highcharts 气泡图Hover

lnlaulya  于 2023-10-20  发布在  Highcharts
关注(0)|答案(1)|浏览(127)

我们可以删除显示在顶部的“系列1”或修改它吗?
另外,我们可以限制悬停时显示的值的数量,并添加一个查看更多选项吗?Bubble Chart
我们特灵删除或修改'系列'标题1,但没有成功

9nvpjoqh

9nvpjoqh1#

要删除“Series 1”文本,请编辑tooltip.headerFormat属性:

tooltip: {
  headerFormat: ''
}

其余的内容可以通过使用以下选项之一自由编辑:pointFormatpointFormatterformatter

现场演示:https://jsfiddle.net/BlackLabel/eu489t7L/
API引用:

https://api.highcharts.com/highcharts/tooltip.headerFormat
https://api.highcharts.com/highcharts/tooltip.pointFormat

相关问题