pyvista.plotting.charts.Axis.range#

property Axis.range[source]#

Return or set the axis range.

This will automatically set the axis behavior to "fixed" when a valid range is given. Setting the range to None will set the axis behavior to "auto".

Examples

Manually specify the x-axis range of a 2D chart.

>>> import pyvista
>>> chart = pyvista.Chart2D()
>>> _ = chart.line([0, 1, 2], [2, 1, 3])
>>> chart.x_axis.range = [0, 5]
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/9e0f633d976b7e4f41df4eca5abd1619458c9db3/d010d/_images/pyvista-plotting-charts-axis-range-1_00_00.png

Revert to automatic axis scaling.

>>> chart.x_axis.range = None
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/f46aa1528fc88fbfbde123eb6aa648cfb8c52a8b/5f888/_images/pyvista-plotting-charts-axis-range-1_01_00.png