[Graph Builder Legend] How to batch rename all the legend items label by JSL
Hi all,
I create a graph builder with legend, and all legend items starts with Mean(x1) Mean(x2) Mean(x3)...
is it able to batch change all the legend label to just x1, x2, x3 ...
I tried this way but didn't work.
Thanks!
server = gb << Get Legend Server;
items = server << Get Legend Items;
For( i = 1, i <= N Items( items[1] ), i++,
legendmodelitem = items[1][i];
thelabel= legendmodelitem << get...