4

如何在 echarts 百度中获取 dataZoom 更改事件的值start和值?end

4

1 回答 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
});

dataZoom 事件的文档


将 eCharts 与 vue.js 库一起使用时:

模板:

<IECharts @dataZoom="updateZoom"></IECharts>

代码(换行methods):

methods: {
    updateZoom(e) {
        // See all available properties of the event
        console.log(e);
    }
}

IEcharts 文档

于 2017-12-18T11:32:14.257 回答