tlemar 0 Posted February 11, 2018 Would it be possible to have enable/disable individual to control which trace display on the graph? Share this post Link to post Share on other sites
AzeoTech 0 Posted February 14, 2018 You can actually easily do this using flags. Let's say you have an variable called "displayMyTrace". You could then set this to 0 or 1 using a checkbox, then for the trace it corresponds to, change the expression from: MyYExpression to: iif(displayMyTrace, MyYExpression, Nan()) There are other ways too, but we'll still look at adding a "visible" variable for each trace. Share this post Link to post Share on other sites