ChartPie.plot#
Examples#
Download Python source code | Download Jupyter notebook
Create a pie plot with segments of increasing size.
>>> import pyvista as pv
>>> chart = pv.ChartPie([1, 2, 3, 4, 5])
>>> chart.show()
Update the pie plot (segments of equal size).
>>> chart.plot.update([1, 1, 1, 1, 1])
>>> chart.show()
Used In#
Docstring Examples
ChartPie.legend(1 use)ChartPie.legend_visible(1 use)PiePlot.brush(1 use)PiePlot.color(1 use)PiePlot.color_scheme(1 use)10 more
PiePlot.colors(1 use)PiePlot.data(1 use)PiePlot.label(1 use)PiePlot.labels(1 use)PiePlot.line_style(1 use)PiePlot.line_width(1 use)PiePlot.pen(1 use)PiePlot.toggle(1 use)PiePlot.update(1 use)PiePlot.visible(1 use)
Gallery Examples