12-03-2025 05:32 PM
I'm trying to plot five data points in a waveform graph. I need to stack plots such that two data points appear in one plot and three in the other. Please see the simple program attached. Any help you can provide will be greatly appreciated.
12-04-2025 01:28 AM
12-04-2025 03:00 PM
If you know which measurements to plot on each plot area, you could create a separate chart for each set of signals:
I turned off the 'stack charts' option above to allow for the grouping (Plots 1,2; Plots 3,4,5) in your post.
12-04-2025 03:17 PM
Thanks for your reply. I know I can use individual charts and you can also put all the data points in one chart and stack them, but I was trying group them first (into arrays or clusters) and then stack them. Any thoughts?
12-04-2025 03:43 PM
I don't know how to do that with a chart in LabVIEW.
You could implement the chart update behaviors with a Mixed Signal Graph (MSG). The mixed signal graph allows you to specify which signals are assigned to which plot areas, but I don't recommend MSG as it can be finnicky.
In your application, is the number of signals fixed? the number of charts?
If the number of signals is variable, but the number of charts is fixed, I would place a graph for each chart, buffer the data to create the chart update effect, and send an array of buffered signals to each graph.