当鼠标移动到系列时,highcharts会显示所有数字,如下图所示:
我想让浮点数在点之后都有2位数。我在网上搜索,然后出现了:
plotOptions: {
series: {
dataLabels: {
formatter: function() {
return '<b>' + this.point.name + '</b>: ' + this.percentage.toFixed(2) + ' %';
}
}
}
}
但它不起作用。
答案 0 :(得分:7)
dataLabels控制显示在图表本身附近点的数字。您在图像中的翻转是工具提示。查看: http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/
tooltip: {
valueDecimals: 2
},
答案 1 :(得分:1)