pyvista.ChartBox.loc#

property ChartBox.loc[source]#

Return or set the chart position in normalized coordinates.

This denotes the location of the chart’s bottom left corner.

Notes

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

Examples

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

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