How to change the colors of all kind of charts in ngx-echarts?
Ive tried (html): <div echarts [options]="chartOption" [theme]="colorScheme" class="demo-chart"></div>
(ts):
colorScheme = {
domain: [
'#2FDF75',
'#246EB9',
'#BCD3F2',
'#323031',
'#FBFFF1',
'#CCFF90',
'#FFFF8D',
'#FF9E80'
]
};
The colors do not change. I am afraid that the format of my custom theme is not the right one. I couldnt find any documentation on how to change the colors of the charts in an easy way.