如何在 echarts 百度中获取 dataZoom 更改事件的值start
和值?end
问问题
1466 次
1 回答
4
在dataZoom发生变化后,监听eCharts派发的dataZoom事件。
myChart.on('dataZoom', function(e) {
console.log(e); // All params
console.log(e.start); // Start value
console.log(e.end) // End value
});
将 eCharts 与 vue.js 库一起使用时:
模板:
<IECharts @dataZoom="updateZoom"></IECharts>
代码(换行methods
):
methods: {
updateZoom(e) {
// See all available properties of the event
console.log(e);
}
}
于 2017-12-18T11:32:14.257 回答