0

我没有找到 Highcharts API http://api.highcharts.com/。如何删除这两条线不在图表中。

http://www.likecomunicacao.com.br/clientes/playtv/grafico/grafico2.html

有人知道吗?

4

1 回答 1

0

您需要关闭饼图的dataLabels。它们默认开启。

plotOptions: {
    pie: {
        innerSize: '70%',
        dataLabels: {
            enabled: false
        }
    },
    series: {
        enableMouseTracking: false,

    }
},
于 2013-10-24T19:37:03.000 回答