ECharts点击横坐标事件实现超链接跳转
需求:微博排行榜,横坐标展示出了微博对应的id,现在需要通过点击横坐标来实现跳转到对应的微博页面。
- 设置横坐标中的triggerEvent属性为true;
xAxis: {
...
triggerEvent: true,
...
},
- 添加on点击事件。
thisChart.on("click" ,function (params) {
window.location.href = "https://m.weibo.cn/detail/" + params.value;
});
最终结果:符合预期。

浙公网安备 33010602011771号