Highcharts 图表中的自定义工具提示
有没有办法在 Highcharts 图表中制作完全自定义工具提示?不仅仅是使用不同的数据或彩色边框,而是使其看起来不同(例如,像里面有图片的气泡)。
Is there any way to make completely custom tooltips in Highcharts diagrams? Not just with different data, or with coloured border, but to make it look different (for example, like a bubble with picture in it).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
....
Try this:
....
使用 options/api 您只能配置边框属性和颜色等内容(请参阅工具提示选项 )。因此,如果不编辑源代码或超出 api,这是不可能的。
工具提示内部由一个 SVG 组组成,该组包含一个内部有文本的矩形。如果您想编辑源代码,请查看 第 1898 行。
Using the options/api you can only configure such things as border properties and colors (see tooltip options). So without editing the source or going outside the api, no it is not possible.
Internally the tooltip consists of a SVG group that contains a rectangle with a text inside. If you want to edit the source, have a look in the Chart.js file around line 1898.
我使用了来自不同线程的另一篇文章,并将 useHTML 部分与其合并,以添加图像作为顶部每个工具提示的一部分。我在顶部选择了 BBC 徽标..
所以,您可以使用
这里是 jsfiddle 工作 示例
I've used another post from a different thread, and merged the useHTML section along with it to add an image as part of each tool tip at the top. I chose BBC logo at the top..
so, you can use
Here is the jsfiddle working example