02-12-2013 11:14 AM
02-12-2013 11:57 AM
The scales of the graphs can be changed individually, however, you cannot programmatically create new scales. To create multiple 'Y' scales, simply right-click the 'Y' scale on your graph and select duplicate. Repeat that procedure for as many scales as you need. To programmatically adjust each of these scales, first call the "Active Y Scale" Property Node and set it to the scale you wish to modify. Next set the range of the scale. Repeat this for each of the scales that you wish to modify. Next you need to tell each plot which scale you want it to display on, use the "Active Plot" Property Node to choose the plot of which you wish to change the scale. Finally, use the "Plot" -> "Y Scale Index" Property Node to set which scale you wish to use for this plot. I don't believe this will give you exactly what you want but I believe that it is the best that can be done with LabVIEW.
03-04-2013 11:10 AM
03-04-2013 08:05 PM
Hello,
Your idea is great but it does not work for me since in a array of clusters (with a graph inside each cluster) it is not possible to have access to the individual reference of each graph inside each cluster. Then, it will not be possible to set different visible scales to each one of the graphs.
Any other idea to solve the issue?
Thanks.
Dan07.
03-05-2013 02:26 AM
Hi Dan,
in an array all elements share the same properties - the only difference is the value of the elements.
So as long as you put your graphs into an array you CANNOT have different scale settings. Get rid of that array of graphs...
03-05-2013 06:22 AM
I posted an example here which shows how to create an "array of subpanels". You can use that to have graphs with separate properties.
http://forums.ni.com/t5/LabVIEW/User-interface-problem-list-of-clusters/m-p/2311770#M726599