Why is the color of my charts all shade of blue only? on examples, they hav

Why is the color of my charts all shade of blue only? on examples, they have different colors.

In short, this is only to match the primiary color of the lumo / the material theme by using the [monochrome theme]
(https://apexcharts.com/docs/themes/). If you wish can of course overwrite it.

Sorry to ask but do you have sample code which randomizes a color? I’ve been searching the net for a while but I can’t find any. All I can do is change the Fill color but it affects all pies or bars. Thank you so much.

Please open an issue on Github with your requirements, how you tried solving them, and what needs to change in the current state to fullfill the requirements.

hi, I have the same problem, i wanna change the pie chart color but only can change the legend colors and the pie chart change to gray. some idea?

Hi, you can try this

ApexCharts donutChart = new ApexCharts()
.withChart(ChartBuilder.get()
.withType(Type.donut).build())
.withColors("#008FFB", "#00E396", "#FEB019", "#FF4560", "#775DD0")
				...