pyvista.ChartPie.size#

property ChartPie.size[source]#

Return or set the chart size in normalized coordinates.

A size of (1, 1) occupies the whole renderer.

Notes

Customisable ChartPie geometry is only supported in VTK v9.2 or newer. For older VTK versions, the size cannot be modified, filling up the entire viewport by default.

Examples

Create a half-sized pie chart centered in the middle of the renderer.

>>> import pyvista as pv
>>> chart = pv.ChartPie([5, 4, 3, 2, 1])
>>> chart.size = (0.5, 0.5)
>>> chart.loc = (0.25, 0.25)
>>> chart.show()
../../../../_images/pyvista-ChartPie-size-2_00_00.png