01-16-2022 06:58 PM
Hi Application Engineers,
I am wondering if there is a way to highlight a row of elements in a 2D array using array's property node?
It can be easily done in an excel sheet, I would like to programmatically do it in LabVIEW.
.
A Vi with data is attached.
Regards,
Gu
Solved! Go to Solution.
01-16-2022 08:34 PM
No, all elements of an array must have the same properties. You can use tables/listboxes to do it though.
Also here are a few workarounds: https://forums.ni.com/t5/LabVIEW/How-to-change-an-array-element-color/td-p/1945893
01-16-2022 10:11 PM
Thank you.
I will try listbox.
Gu
01-17-2022 10:06 AM - edited 01-17-2022 10:15 AM
Use a TABLE instead of an Array on your font panel
Then use the Selection Color, Size, and Start properties to highlight the cells
01-17-2022 03:50 PM
Yes, table is a better option.
thanks,
Gu