Highcharts图表值的数字格式?

时间:2012-08-09 10:06:42

标签: javascript highcharts

我将这些值提供给Highcharts饼图:

  series:[
        {
            type:'pie',
            name:'Ratio',
            data:[
                ['A', 42.6],
                {
                    name:'B',
                    y:14.2,
                    sliced:true,
                    selected:true
                }
            ]
        }
    ]

然而它在饼图中显示如下:

A -> 75.00000000000001 %
B-> 25 %

您可以在Highcharts格式化工具提示图表值的格式吗?

enter image description here

5 个答案:

答案 0 :(得分:19)

plotOptions.pie.dataLabels.formatter是一个允许您格式化标签的函数。在这种情况下,我返回this.percentage.toFixed(2),它将在2位小数处修剪您的数字。在this jsFiddle

进行演示
plotOptions: {
    pie: {
        dataLabels: {
            formatter: function() {
                return '<b>' + this.point.name + '</b>: ' + this.percentage.toFixed(2) + ' %';
            }
        }
    }
},

答案 1 :(得分:15)

我们有工具提示格式化程序选项,可以将值显示为数字而不是百分比

http://api.highcharts.com/highstock#tooltip.formatter

tooltip: {
   formatter: function() {
      return '<b>'+ this.point.name +'</b>: '+ this.point.y ;
   }
},

this.point.y会做的伎俩(现在你在那个地方有了这个百分比)

答案 2 :(得分:14)

您可以按照以下格式进行格式化。

    tooltip: {
    pointFormat: "Value: {point.y:.2f}"
}

documentation about Highcharts formatting

答案 3 :(得分:6)

tooltip: {
   pointFormat: "Value: {point.y:.2f}"
}

这不是用于形成值。

var data = [{
     name: 'Population',
     data: [],
     dataLabels: {
         enabled: true,
         rotation: -90,
         color: '#FFFFFF',
         align: 'right',
         x: 4,
         y: 10,
         style: {
             fontSize: '13px',
             fontFamily: 'Verdana, sans-serif',
             textShadow: '0 0 3px black'
         }, formatter: function() {
             return  Highcharts.numberFormat(this.y, 2, '.');
         }
     }
}];

可以在数据中的数据标签中更改值的格式。

答案 4 :(得分:0)

  tooltip: {
    pointFormat: "Percentage: {point.percentage:.2f}"
}

这将为您提供百分比值