pyvista.Chart2D.loc#
- property Chart2D.loc[source]#
Return or set the chart position in normalized coordinates.
This denotes the location of the chart’s bottom left corner.
Examples
Create a half-sized 2D chart centered in the middle of the renderer.
>>> import pyvista as pv >>> chart = pv.Chart2D() >>> plot = chart.line([0, 1, 2], [2, 1, 3]) >>> chart.size = (0.5, 0.5) >>> chart.loc = (0.25, 0.25) >>> chart.show()