Reputation: 35
I'm trying to get a Bar Chart with different bar color, I'm using the property colorByPoint, so (here my complete example: http://jsfiddle.net/n6GRZ/7/):
plotOptions: {
series: {
colorByPoint: true
}
},
but this does not work as in Highcharts example in this:
Upvotes: 1
Views: 1792
Reputation: 15866
You set plotOptions two times, remove additional one. this line:
//plotOptions:{bar:{dataLabels:{enabled: true}}},
Upvotes: 0