![]() | Download Help (Windows Only) |
Owning Class: plots
Requires: MathScript RT Module
ref_plotarea
obj = ref_plotarea
Legacy Name: gca
Returns the reference to the current plot area. If no plot area exists, ref_plotarea creates a new plot.
Name | Description |
---|---|
obj | Returns the reference to the current plot area. obj is a reference to a plot area. |
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | No (returns error or is ignored) |
Supported on RT targets | No |
X = 0:0.1:1;
Y = X.*X;
plot(X, Y)
obj = ref_plotarea;
set(obj, 'Color', 'c')
Helpful
Not Helpful