0

我有一个小问题,我有一个由 highcharts 生成的饼图 - 它以百分比表示数据。因此,例如,如果我有两个值 2 和 3,它将在绘制的图表上显示 40% 和 60%。而不是以百分比显示数据,我实际上想在绘制的图表上显示这些数字:2 和 3。任何人都知道我必须更改什么来显示数字而不是百分比?谢谢!

chart: 
        {
            renderTo: 'sunshine',
            plotBackgroundColor: null,
            plotBorderWidth: null,
            plotShadow: false
        },
        title: 
        {
            text: 'Browser market shares at a specific website, 2010'
        },

        tooltip: 
        {
            pointFormat: '{series.name}: <b>{point.percentage}%</b>',
            percentageDecimals: 1
        },
        plotOptions: 
        {
            pie: 
            {
                allowPointSelect: true,
                cursor: 'pointer',
                dataLabels: 
                {
                    enabled: true,
                    color: '#000000',
                    connectorColor: '#000000',
                    formatter: function() 
                    {
                        return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %';
                    }
                }
            }
        },
        series: [
        {
            type: 'pie',
            name: 'Browser share',
            data: [
                ['Jan',   2],
                ['Feb',       3],
            ]
        }]
    });
4

1 回答 1

2

使用 pie 属性的标签格式化程序。您可以使用以下值访问确切的数据点this.y

 pie: 
        {
            allowPointSelect: true,
            cursor: 'pointer',
            dataLabels: 
            {
                enabled: true,
                color: '#000000',
                connectorColor: '#000000',
                formatter: function() 
                { 
                    return '<b>'+ this.point.name +'</b>: '+ this.y;
                }
            }
        }
于 2013-04-09T23:37:42.817 回答