09-22-2008 03:34 PM
Hi,
I like to implement a strip chart with stacked plots and the number of plots should be controlled by user configuration. I tried to find a way to programmatically change the number the plots that wires to the chart. I tried "array to cluster" function before wiring to the chart, but the size of the cluster cannot be changed on the fly. I tried 2D array and set property node to control the columns of the array. But both didn't work. I am wondering if someone can share expeeriences or any code samples, I'd really appreciate it.
09-22-2008 03:43 PM
09-22-2008 04:06 PM
09-22-2008 04:31 PM - edited 09-22-2008 04:32 PM
Well, a chart accepts one point at a time or it can accept an array of points. If you wire a 2D array that's multiple plots where you're providing either one or more points for each plot:
The stacked/overlay is really more of a difference in the way you present the data to the user. The programming is the same either way.
09-22-2008 05:05 PM