Highcharts:无法修改直方图工具提示

时间:2018-01-20 17:19:15

标签: javascript highcharts

我正在努力在高图直方图上格式化工具提示。出于某种原因,这些垃圾箱会显示在第10个小数点,这是非常无益的...请参阅下面的图片。

How do I amend the tooltip so that it is rounded to 2 decimal points? 

我试过搞乱'point.key'配置,但它只允许我修改第一个数字,而不是第二个数字。

My issue with the highcharts histogram

1 个答案:

答案 0 :(得分:3)

您可以将tooltip.pointFormat设置为显示带小数点后两位的值。

直方图的默认格式为:

pointFormat: `
  <span style="font-size:10px">{point.x} - {point.x2}</span<br/>
  <span style="color:{point.color}">\u25CF</span>{series.name} <b>{point.y}</b><br/>`

要显示带有两位小数点的值,请将{point.x}更改为{point.x:.2f}。请参阅format strings部分。

实例:http://jsfiddle.net/r9zwwu3j/