3-D pie chart
pie3(X)
pie3(X,explode)
pie3(...,labels)
pie3(axes_handle,...)
h = pie3(...)
pie3(X)
draws a three-dimensional
pie chart using the data in X
. Each element in X
is
represented as a slice in the pie chart.
If sum(X) ≤ 1
, then the
values in X
directly specify the area of the pie
slices. pie3
draws only a partial pie if sum(X)
< 1
.
If the sum of the elements in X
is
greater than one, then pie3
normalizes the values
by X/sum(X)
to determine the area of each slice
of the pie.
pie3(X,explode)
specifies
whether to offset a slice from the center of the pie chart. X(i,j)
is
offset from the center of the pie chart if explode(i,j)
is
nonzero. explode
must be the same size as X
.
pie3(...,labels)
specifies
text labels for the slices. The number of labels must equal the number
of elements in X
.
pie3(axes_handle,...)
plots into the axes with the handle axes_handle
instead
of into the current axes (gca
).
h = pie3(...)
returns
a vector of handles to patch, surface, and text graphics objects.