10-01-2013 01:10 AM
in bar graph how should we get name of diminsion on perticular bar in labwindow/CVI ?
10-01-2013 11:51 PM
Can you explain your question a bit more? Can you add an example of what you want to obtain?
10-02-2013 10:05 AM
Hi,
I guess that you need to get the names of X and Y axis ?
So you must use GetCtrlAttribute function, as shown below :
char xAxisName[32];
char yAxisName[32];
GetCtrlAttribute (panelHandle, PANEL_BARGRAPH, ATTR_XNAME, xAxisName);
GetCtrlAttribute (panelHandle, PANEL_BARGRAPH, ATTR_YNAME, yAxisName);
10-02-2013 10:06 AM
Here is a screenshot, to make it clear if needed... 🙂