具有多种颜色的单个数据的系列的Highchart Color Issue

时间:2014-07-08 12:41:27

标签: javascript css graph charts highcharts

我正在制作我的图表,但它只为 name:vengadesh 提供单一颜色,

这是我在小提琴中的图表代码..

My Example Chart in FIDDLE

但我希望动态地为一个人获得多种颜色......

我的实际图表 enter image description here

我预期的图表 **MY EXPECTED CHART**

2 个答案:

答案 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
     ],

FIDDLE