shikenian opened a new issue #9012: Echart tooltip formatter自定义的提示信息中的URL无法点击到
URL: https://github.com/apache/incubator-echarts/issues/9012
 
 
   <!--
   为了方便我们能够复现和修复 bug,请遵从下面的规范描述您的问题。
   -->
   
   
   ### One-line summary [问题简述]
   
   我在使用Echart的过程中,使用tooltip的formatter自定义了一个方法,这样鼠标在图形中移动的过程中就可以展示我们自定义的数据了。
   现在到 问题是,我在自定义显示的内容中包含链接信息,也就是快捷方式。我希望的是能够鼠标移动的过程中,弹出的提示信息中的快捷方式能够被我点击到。
   现在的问题是,当我尝试移动鼠标去点击图形中的快捷方式的时候,图形会随着我鼠标的移动而移动,导致永远没法点击到里面的内容。
   
   
   
   ### Version & Environment [版本及环境]
   + ECharts version [ECharts 版本]:
   最新版本
   + Browser version [浏览器类型和版本]:
   Chrome最新版本
   + OS Version [操作系统类型和版本]:
   Windows10
   
   
   
   
   ### Expected behaviour [期望结果]
   希望鼠标移动的过程中产生产生的提示信息中的超链接可以被我点击到。
   
   
   
   
   ### ECharts option [ECharts配置项]
   <!-- Copy and paste your 'echarts option' here. -->
   <!-- [下方贴你的option,注意不要删掉下方 ```javascript 和 尾部的 ``` 字样。最好是我们能够直接运行的 
option。如何得到能运行的 option 参见上方的 guidelines for contributing] -->
   ```javascript
   option = {
    xAxis: {
                                type: 'category',
                                data: xAxis_values
                            },
                            yAxis: {
                                type: 'value'
                            },
                            tooltip: {
                                formatter: function (datas) {
                                        console.log(datas)
                                        //name 横坐标
                                        //value 纵坐标
                                        //dataIndex 索引
                                        var name = datas.name
                                        var value = datas.value
                                        var dataIndex = datas.dataIndex
                                        var result = ""
                                        result += "bin:" + name + "<br/>"
                                        result += "count:" + value + "<br/>"
   
                                        var json_data = window._tone_json_data
                                        result += "<ul>"
                                        toparts = 
json_data.tonechart[dataIndex].toparts
                                        for (var i = 0; i < toparts.length; 
i++) {
                                                var topchart = toparts[i]
                                                result += "<li>" + "<a href='" 
+ topchart.url +"'>" + topchart.title +"</a>" + "</li>"
   
                                        }
                                        result += "</ul>"
   
                                        return result
                                }
                            },
                            series: [{
                                data: yAxis_values,
                                type: 'bar'
                            }]
   }
   
   ```
   
   
   
   
   ### Other comments [其他信息]
   <!-- For example: Screenshot or Online demo -->
   <!-- [例如,截图或线上实例 (JSFiddle/JSBin/Codepen)] -->
   
![image](https://user-images.githubusercontent.com/7303314/45066715-399d8980-b0f2-11e8-86b6-09a32d4263da.png)
   
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@echarts.apache.org
For additional commands, e-mail: dev-h...@echarts.apache.org

Reply via email to