diff --git a/src/com/fr/plugin/demo/demoWrapper.js b/src/com/fr/plugin/demo/demoWrapper.js index 2c62f80..0927dc1 100644 --- a/src/com/fr/plugin/demo/demoWrapper.js +++ b/src/com/fr/plugin/demo/demoWrapper.js @@ -2,6 +2,8 @@ demoWrapper = ExtendedChart.extend({ _init: function (dom, option) { var chart = echarts.init(dom); + //绑定点击触发超链函数 + chart.on('click', this.getLinkFun()); chart.setOption(option); return chart; },