我想为Piechart
中的每个数据设置颜色,在某些切片中我想显示默认颜色。我在Highcharts API中读到它必须设置为undefined
,但它对我不起作用。
$('#container').highcharts({
chart: {
type: 'pie'
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, {
y: 216.4,
color: undefined
}, 194.1, 95.6, 54.4]
}]
});