我正在制作我的图表,但它只为 name:vengadesh
提供单一颜色,
这是我在小提琴中的图表代码..
但我希望动态地为一个人获得多种颜色......
我的实际图表
我预期的图表
答案 0 :(得分:1)
另一种解决方案是为系列设置颜色数组,然后设置colorByPoint: true
,请参阅:http://jsfiddle.net/7VNwk/2/
series: [{
type: 'column',
name: 'Vengadesh',
data: [2, 2, 2],
colors: ['blue', 'red', 'green'],
colorByPoint: true
}]
答案 1 :(得分:0)
series: [{
type: 'column',
name: 'Member Average Packer Price',
data: [{y: 110.20, color: 'red'}, // this point is red
// default blue
{y: 110.20, color: '#aaff99'}, // this will be greenish
],