plotlyjs,在带有标签的直方图中悬停

时间:2018-11-07 10:00:36

标签: javascript hover histogram plotly

我有一个与plotlyjs的直方图 当我通过鼠标时,例如,我有(10,20) 但是我想要的是(x:10,y:20)

    var trace = {
        x: data['x'],
        autobinx: false,
        xbins: {
            start: min,
            size: 1,
            end: max
        },
        text: 'x,y',
        hoverinfo: 'x' + 'y' + 'text',
        nbinx: data['xfit'].length,
        type: 'histogram',
        name: 'Incentive Rate',
      }

为此,我得到的像((10,20)x,y)

0 个答案:

没有答案