Hi, recently I set property to a column in big class data table and make this column has color gradient. code is like below:
:height<<set property( "color gradient", { "white to blue", range( colminimum(:height), colmaximum(:height) ) } );
:height<<color cell by value(1);
it works.
but after that I want to reverse the color scale, the code is like:
:height<<set property( "color gradient", { "white to blue", range( colminimum(:height), colmaximum(:height) ), "reverse scale" } );
:height<<color cell by value(1);
it fails.
is there anyone can help you how to reverse color scale applied on a column?