Member of the plots class.
pie(x)
pie(x, y)
Generates a pie chart.
| Name | Description |
| x | Specifies the size of the slices of pie you want to plot. LabVIEW ignores the non-positive elements in x. x is a vector. |
| y | Specifies whether to offset the slices of pie from the center point. y is a vector. length(y) must equal length(x). |
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 = rand(6, 1);
y = [0, 0, 1, 0, 1, 0];
pie(x, y);