01-09-2024 05:27 AM
How to create checkbox so I can select more than one plot in single waveform chart?
I m not able to select more than one plot in single wave form chart in labview i m new to labview programming .
Solved! Go to Solution.
01-09-2024 05:36 AM
I'd always write all plots, and then use a property node (right click the graph or it's terminal, Create>Property Node) to make them visible:
01-10-2024 05:03 AM
Thank You,
But now here i also have one doubt is that how will I going to control it from my front panel, because the array is constant Boolean array.
01-11-2024 02:56 AM
You could replace the Boolean array constant with any source.
This is another problem, but we can continue the discussion here.
If you simply convert the constant to a control, it will be on your front panel.
It isn't be hard to convert your current control to an array of Booleans, but that doesn't allow you to combine channels. So, if you describe exactly how you want your UI, we can help with that.
UI related things are usually handled in an event structure loop, but you might need some catching up on that.
01-11-2024 04:15 AM
Thank you.
I'm providing you with program. In which I want to select more than one plot in single waveform chart as in program provided by me select one plot at a time. With that to I want to also see plot color.
01-11-2024 04:49 AM
Yes, you provided it before.
However, it's not entirely clear from what you have what it is you want.
For instance, you limit the range of each channel between the same 2 numbers:
This will simply result in 0.8, 2.06 and 1.0 (for these 3 channels). I assume you want the range to be between the negative and positive value... But the more assumptions, it harder it gets to advice on anything.
You really want to let the code do the work for you:
Untested, as I don't know what (exactly) the test result should be.
01-11-2024 06:19 AM
Thank You Sir really appreciate. 😊
It is working, not exactly the way I want but I think if I work more on it, then it will work proper as per my requirements. Thank you.😊
01-12-2024 05:32 PM