Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I couldnt able to apply color on all chart rows, it takes my expression conditon color only for current selected period. how can i apply color irrespective of the selections.
pls help
Gautham
Try this:
only({<Period>}
if(Class='ClassA', LightGreen(),
if(Class='ClassB',LightRed(),
if(Class='ClassC',LightMagenta())))
)
Like this?
You just cleared of the selection, that will work anyway.
I just want to show all periods even particular period is selected with colors on each row.
Gautham.
Try this:
only({<Period>}
if(Class='ClassA', LightGreen(),
if(Class='ClassB',LightRed(),
if(Class='ClassC',LightMagenta())))
)