gpt4 book ai didi

javascript - 如何根据 Highcharts 的楔形值设置饼图楔形颜色?

转载 作者:行者123 更新时间:2023-12-03 05:12:34 25 4
gpt4 key购买 nike

我正在 Highcharts 中构建饼图: http://jsfiddle.net/y3j8ybrg/

我希望能够根据楔形代表的数据值设置每个楔形的背景颜色。

API 文档似乎没有提供此功能。它展示了如何使用闭包或函数来生成颜色数组,但没有展示如何让该函数访问点值。

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'
]})(),
}],
});
});

最佳答案

最好是预先计算颜色并将数据数组创建为 {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

关于javascript - 如何根据 Highcharts 的楔形值设置饼图楔形颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41745791/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com