我在Highcharts中建立一个饼图: http://jsfiddle.net/y3j8ybrg/
我希望能够根据wedge所代表的数据值设置每个楔形的背景颜色。
API文档似乎无法使其可用。它显示了如何使用闭包或函数来生成colors数组,而不是如何使用该函数来访问point值。
HTML:
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
<button id="button">Add point</button>
JavaScript:
$(function () {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
plotBackgroundColor: '#323f48',
plotBorderColor: '#323f48',
plotBorderWidth: 0,
plotShadow: false,
backgroundColor: '#323f48',
borderColor: '#323f48'
},
title: {
text: 'CHART<br/><span class="white">sub-header</span>',
align: 'center',
verticalAlign: 'middle',
y: -3,
style: {
fontWeight: 'bold',
color: 'white',
fontSize: '10px'
}
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
dataLabels: {
enabled: true,
distance: -510,
style: {
fontWeight: 'bold',
color: '#323f48'
}
},
startAngle: -180,
endAngle: 180,
center: ['50%', '50%'],
animation: false,
borderColor: '#323f48',
borderWidth: '0px'
}
},
series: [{
type: 'pie',
name: 'days',
innerSize: '90%',
data: [
['empty', 56.00],
['days', 44.00],
],
// I want this to be a function that returns a color depending upon the data series point value.
colors: (function(){return [
'#59636b',
'#8edd65'
]})(),
}],
});
});
答案 0 :(得分:1)
可能最好预先计算颜色并将数据数组创建为{x: 'empty', y: 56.00, color: '#somecolorhex',..
,或者在chart.events.load
调用中更新加载时的颜色。您也可以在数据元素中添加getColor()
函数,但是您必须重复数据值。
getColor = function(val) {
if (val >= 50) {
return 'red'
} else {
return 'blue'
}
}
series: [{
type: 'pie',
name: 'days',
innerSize: '90%',
data: [{
x: 'empty',
y: 56.00,
color: getColor(56.00)
}, {
x: 'days',
y: 44.00,
color: getColor(44.00)
}]
}]
示例jsfiddle