图表JS。超过y轴最大值时,

时间:2019-02-26 05:21:22

标签: javascript chart.js

我为我的英语水平不好而感到抱歉。

在我的代码中,当超过y轴最大值时,我想在将其悬停在图表中时保留它的值。我想摆脱这条线,并在最大10个地方绘制它。 现在,在当前代码中,该行位于我要避免的图表上方。

options: {
hoverMode: 'index',
stacked: false,
scales: {
  yAxes: [
  {
    type: 'linear',
    display: true,
    position: 'left',
    ticks: {
      min: 0,
      stepSize: 30,
      fontColor: "#5a697a",
      fontSize: 14
    },
    id: 'y-axis-1'
  }, {
    type: 'linear',
    display: true,
    position: 'right',
    id: 'y-axis-2',
    ticks: {
      max: 10
    },
    gridLines: {
      drawOnChartArea: true,
      color: '#28394a'
    }
  }
]}}

示例:当“ y轴2”放置 14值而没有越过图表时。我希望您进入第10行。在悬停时,我想标记 14值

0 个答案:

没有答案