04-09-2026 08:13 AM
Hello All,
I want to develop a gauge in LabVIEW with a range of 0 to 100. The gauge value will be controlled using a numeric input. Based on the input value, the gauge should be dynamically filled with color up to that value, while the remaining portion should stay white.
How can I implement this functionality in LabVIEW?
If possible, could you provide a sample LabVIEW program or step-by-step guidance to achieve this?
04-09-2026 08:04 AM
Hello All,
I want to develop a gauge in LabVIEW with a range of 0 to 100. The gauge value will be controlled using a numeric input. Based on the input value, the gauge should be dynamically filled with color up to that value, while the remaining portion should stay white.
How can I implement this functionality in LabVIEW?
If possible, could you provide a sample LabVIEW program or step-by-step guidance to achieve this?
04-09-2026 08:28 AM - edited 04-09-2026 08:29 AM
Hi sasimitha,
@sasimitha wrote:
I want to develop a gauge in LabVIEW with a range of 0 to 100. The gauge value will be controlled using a numeric input. Based on the input value, the gauge should be dynamically filled with color up to that value, while the remaining portion should stay white.
How can I implement this functionality in LabVIEW?
You could paint your gauge using a 2DPictureIndicator:
(You could embed all this into an XControl, so you have an "ordinary" numeric terminal in your main code… 😄 )
04-09-2026 08:29 AM
Here's something I built about a decade ago just as a quick experiment. The code isn't good, since it was just a quick test, and it doesn't do exactly what you want, but it should give you a direction.
04-09-2026 11:54 AM