如何获取echarts百度中dataZoom更改事件中的start和的值?end
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);
    }
}