Hiding Plots used for shading

Hi Guys,

 

Anyone know how to hide the plots for V2 and V4 via scripts? I only want to display the shade between them and am able to hide them in the structure panel but not at the script level it seems.

 

Also wish we could code colours into scripts :-) - Optuma ETA?

Thanks

 

 

Plot1=Shade(V2, V4, DOWNCOLOUR=Orchid, UPCOLOUR=Royalblue, SHADEALPHA=6)

Hi Steven,

There are limitations with scripting tools so the plots can’t be hidden, but you can set the colour as per this KB article:

https://help.optuma.com/kb/faq.php?id=722

In your example if would be something like

Plot1 = V2;
Plot1.Colour=Orchid;

Plot2 = V4;
Plot2.Colour=RoyalBlue;

Plot3=Shade(V2, V4, DOWNCOLOUR=Orchid, UPCOLOUR=Royalblue, SHADEALPHA=6)