Reputation: 1
I have four echarts in my web page. When zooming on a graph with mouse wheel, I want the other graphs to be zoomed at the same time.
Upvotes: 0
Views: 912
Reputation: 1790
Use echarts.connect
.
echarts.connect([myChart1, myChart2, myChart3, myChart4])
Upvotes: 2