Hi,
I’m trying to assign fixed colours to specific series by name in a bar/pie chart in Apliqo Next Gen, but the seriesConfiguration.series.color field does not seem to have any effect.
The problem with customColors
The current customColors approach assigns colours by index (0, 1, 2 …), which means colours shift whenever a series has no data and is excluded from the chart. I need colours to be bound to the series name, not the position.
What I configured
Under chartOptions.seriesConfiguration:
"seriesConfiguration": {
"series": [
{ "name": "In Progress", "color": "#266EB0" },
{ "name": "Due Soon", "color": "#FFD93D" },
{ "name": "Overdue", "color": "#F3420B" },
{ "name": "Completed", "color": "#333333" }
]
}
And set plotOptions.colors.selection to "default" to avoid customColors overriding it.
Result
No change. The chart still uses the default colour palette and ignores the color values in seriesConfiguration.
Questions
- Is
seriesConfiguration.series.colora supported field in the current version of Apliqo Next Gen? - If not, is there any supported way to bind a fixed colour to a series by name?
- Is this on the roadmap?
Color should be red. yellow.. etc.
Thanks!

