Member of the plots class.
gtext(text)
Adds text to the current plot area. LabVIEW adds the text at the position in the plot area where you click the mouse.
| Name | Description |
| text | Specifies the text you want to add. text is a string. |
This function is not supported in the LabVIEW Run-Time Engine. This function can remain in your scripts when you build a stand-alone application or shared library, but the LabVIEW Run-Time Engine does not execute this function.
X = 0:0.1:1;
Y = X.*X;
plot(X, Y, 'bo-')
gtext('text')