如何更改highcharts中的速度表标题样式更改

时间:2016-01-04 15:05:40

标签: javascript jquery css highcharts

enter image description here

我想自定义悬停效果以描绘具有不同子弹颜色的值(基本上就像一个自定义的html片段)。我如何实现这一目标?在highcharts中启动对象时我应该添加哪个参数?

提前致谢。

2 个答案:

答案 0 :(得分:1)

您可以通过工具提示的pointFormat属性编辑工具提示的格式。看看这个fiddle.

tooltip: {
        pointFormat: '<span style="color:{point.color}">\u25CF</span> You can change the tooltip format here: <b>{point.y}</b><br/>',
        valueSuffix: ' km/h'
    }

查看工具提示here的其他属性;

答案 1 :(得分:0)

您可以使用tooltip.formatter,根据您的要求自定义工具提示内容。

tooltip: {
        formatter: function () {
            return 'The value for <b>' + this.x +
                '</b> is <b>' + this.y + '</b>';
        }
    },