Hi All
I got a collection with one field of different colours .
This collection is used to create a Column Chart and I want columns in a chart to have a specific colour depending on a current value.
So I have a collection
{V:34, c:RGBA(255, 204, 153, 1)}
{V:50, c:RGBA(255, 204, 204, 1)}
{V:64, c:RGBA(204, 255, 204, 1)}
And I want chart columns to have those colours is per "c" field in collection
I know itemColorSet property of the chart takes a table, but I just couldnt figure out how to convert collection into a table.
I tried
Set(ColTable, Table(Collect.c))
but it gives me table of 10 digits numbers instead of colours :/
Any ideas?
Thanks