Array plotter in the watchtable won't always show up
-
@Christoph-Hart As the title says, sometimes you just get old list view for a reason I can understand...
It would be cool to be able to select what we want to see. For the current project I need the plotter to show me a curve, but having the list can be very useful too so...
-
@ustk yes, I'm using advanced AI tech to figure out whether to show a graph (
if(array.contains(nonNumbers)){ showTextList(); }
but I guess this could be customized. Unfortunately there is only one interface method to show a UI component on right click so adding a user choice would require lots of changes).Have you considered using a Buffer instead of an array? This will always show the graph.
-
@Christoph-Hart oh yeah a buffer why haven’t I thought about that… I’ll try.
My array is only made of numbers, but I’ll check in case an undefined is hiding somewhere…