01-07-2015 04:56 AM
I have to replicate the same drawing in LabVIEW. The diagram shows no.of pipes arranged. Can I replicate the same using labVIEW.
The picture is given as attachment.
Thanks in Advance
Solved! Go to Solution.
01-07-2015 06:09 AM
01-07-2015 07:21 AM
You can put static images on your front panel & block diagram. Just copy+paste the image.
If you're going to overlay lots of controls/indicators over the image, you may run into performance issues unless you break the image up into smaller pieces due to how LabVIEW updates front panel objects when they are overlaid on an image (it has to update every object on the image each time one of the objects is written to - unless that's changed in a more recent version).
01-07-2015 11:39 PM
I am using this for showing arrangement of pipes.
I want this diagram to be automatically drawn by LabVIEW . I know that LabVIEW is not a drawing software but drawing operations can be performed in labVIEW .
If you see the image you can see the numberings that numbers will be provided by the user so such a schematic diagram should be drawn by labVIEW.
01-08-2015 01:33 AM - edited 01-08-2015 01:34 AM
Hi nk,
but drawing operations can be performed in labVIEW .
Yes, you're right!
As you (and only you) know, how those lines should look like, it's you who needs to program such drawing routines!
You could use
- 2D picture indicator: there are a lot of those drawing functions…
- XY graph: create a plot for each line. Using NaNs as invisible gaps you could even have them in just one plot…
01-08-2015 02:20 AM
Thank You