I have json response which has color value. So according to that value I want to change the color of combo chart bar. There will be multiple value in json.
My Json is like this:
[{"colors":"#dd2727","availability":"Sold","plotno":"21","visits":"61","average":11,"start":"2018-12-27","end":"2018-11-27"},
{"colors":"#4c9e12","availability":"Available","plotno":"22","visits":"41","average":11,"start":"2018-12-27","end":"2018-11-27"}]
So I want to apply the colors value i.e "#dd2727" to first bar and "#4c9e12" to second bar. How to do this? How can I pass different colors value inside options colors.
Please help me ASAP.