12-12-2005 02:33 AM
12-12-2005 03:03 AM
no problem on big high resolution monitor
Maybe a customizing of your indicator can help, a 'strait' solution with array of cluster is attached
12-12-2005 03:12 AM
Thanks Henrik
Your solution seems to have achieved what i am tring to do visually, however my system islimited to 1024x768 resolution and my indicator simply consists of just an array and not an array of clusters ( I am modifying an exiting program so I want to avoid any rewriting of my code to change it from dealing with arrays to delaing with arrays of clusters).
Can you explain the steps required to adjust the spacing inbetween elements so that i can apply it to my own array indicators.
Thankyou for your help.
Tristan
12-12-2005 07:58 AM
The trick with the cluster will hide parts of the indicator. Its not good practice if the indicator is updated often, since you have overlapping UI items.
Drop an array on the panel, drop a cluster inside, drop an other element or more into the cluster. Now you can 'hide' the upper space of the element to save pixel.
conversion can be done easily, see example. Instead of replacing the indicator, who's values are maybe used somewhere else (right click-find instances) you can just hide it (right click on the terminal - hide) and place the new array on the panel and update the value wherever the value chances ....
However, it's still bad programming stile and who really wants to monitor 32 small number on the panel ??
12-12-2005 08:42 AM - edited 12-12-2005 08:42 AM
I would display it in a table or even a simple string indicator. See attached example (LabVIEW 7.1). 🙂
(Maybe you could even combine multiple 32 element 1D arrays into one 2D table with multiple columns).
Message Edited by altenbach on 12-12-2005 06:43 AM