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.
12-08-2025 03:54 AM
It is not clear what you want to achieve. Can you make a sketch?
12-08-2025 03:58 AM - edited 12-08-2025 04:04 AM
nevermind
12-08-2025 11:10 AM
@GRCs wrote:
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?
Why not just use a cluster of two charts?
12-14-2025 01:32 PM
I'm not sure what you mean by "Stack them". I can think of two scenarios:
Option 1 has already been suggested, but I gather isn't what you mean. Option 2 actually exists for LabVIEW Charts and Graphs. However, it can be very tricky to implement! I actually tried to do this for plotting a Waveform Graph showing 7 channels of Flow rates (units liters/min) and one of Coolant Temperature (°/sec), but eventually gave up and created two graphs (Option 1, above).
Bob Schor