Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
How to get different colors for dimensions in charts even if dimension values exceeds 18 ?
I should not get the same color again in my chart .
Thanks,
Simson
You don't have to assign the colors to particular dimension values.
For example, this background color expression:
Pick(RowNo(),
RGB(r,g,b),
... (more color expressions)
)
will work no matter what the chart dimension is. To avoid typing all those colors in expression, you could also store them in data and use something like
FieldValue('yourcolorfield',RowNo())