如何获取dataZoom中的开始和结束值echarts baidu中更改了事件?

如何获取startend在dataZoom中的值echarts baidu更改了事件?如何获取dataZoom中的开始和结束值echarts baidu中更改了事件?

回答:

收听dataCoom发生变化后由eCharts调度的dataZoom事件。

myChart.on('dataZoom', function(e) { 

console.log(e); // All params

console.log(e.start); // Start value

console.log(e.end) // End value

});

Documentation on dataZoom event


当使用带vue.js库eCharts:

模板:

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

代码(在methods涡卷):

methods: { 

updateZoom(e) {

// See all available properties of the event

console.log(e);

}

}

Documentation on IEcharts

以上是 如何获取dataZoom中的开始和结束值echarts baidu中更改了事件? 的全部内容, 来源链接: utcz.com/qa/261483.html

回到顶部