-1

我有这张图表:

在此处输入图像描述

我想将一个单位添加到值“4”(我的 xAxis 的值)。我怎样才能做到这一点?

谢谢

4

4 回答 4

0

很难说,因为没有发送代码,但看起来你的“4”是一个系列名称(或一些文本项 - 不是一个值)。为此,您可以在本tooltip.formatter中使用like 。我已将“%”添加到类别(月)文本中:

tooltip: {
    formatter: function() {
        return 'The value for <b>'+ this.x +
            '%</b> is <b>'+ this.y +'</b>';
    }
}
于 2013-10-29T17:21:31.480 回答
0

使用tooltip.headerFormat,见:http: //jsfiddle.net/3bQne/647/

    tooltip: {
        headerFormat: '<span style="font-size: 10px">{point.key} cm</span><br/>'
    },
于 2013-10-30T11:36:23.793 回答
0

你可以从工具提示格式化程序中做到这一点

tooltip: {
formatter:function(){
var formattedX = "unit" + this.x;
return formattedX + 'this value ' + this.y;
}
}

我希望这能帮到您。

于 2013-10-30T06:05:47.070 回答
0
 tooltip: {
        valueDecimals: 2,
        valuePrefix: '$',
        valueSuffix: ' USD'
    }

请检查以下链接

https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/tooltip/valuedecimals/

于 2019-05-29T09:30:34.747 回答