在x轴上进行缩放工作,使用y轴自动缩放到可见图段上显示的数据点

时间:2019-02-11 11:55:20

标签: javascript chart.js chartjs-plugin-zoom

我有一个用ChartJS和插件“ chart-plugin-zoom”绘制的图形,用于缩放。 我需要在缩放x轴时将y轴自动缩放到可见图段上显示的数据点。 我该怎么办?

zoom: {
    enabled: true,
    mode: chart.options['maxValue'] && chart.options['maxValue'] !== 0 ? 'xy' : 'x',
    rangeMin: {
      x: 60000, // Limit zoom in range: 1 min
      y: chart.options['series'][index] && chart.options['series'][index].beginAtZero ? 0 : null
    },
    rangeMax: {
      x: chart.options['maxX'] - chart.options['minX'],
      y: chart.options['maxValue'] && chart.options['maxValue'] !== 0 ? 1.2 * chart.options['maxValue'] : null,
    }
 }

0 个答案:

没有答案