javascript - Highcharts - how to set color for part of chart -
i have column chart uses gradient color , looks :
however i'd make parts grey, that:
what best course of action in case? should split data in different series or .. ? thank you!
you can update point's color on load event.
point.update({ color: '#4d4d4d' }); api reference:
http://api.highcharts.com/highcharts/chart.events.load http://api.highcharts.com/highcharts/point.update
example:
http://jsfiddle.net/j7j1j28v/


Comments
Post a Comment