我有一个用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,
}
}