pyvista.Chart2D.x_range#

property Chart2D.x_range[source]#

Return or set the range of this chart’s x axis.

Examples

Create a 2D plot and set custom axis ranges.

>>> import pyvista
>>> chart = pyvista.Chart2D()
>>> _ = chart.line([0, 1, 2], [2, 1, 3])
>>> chart.x_range = [-2, 2]
>>> chart.y_range = [0, 5]
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/41fb77bf58e605bfb596828c3e98e5846ba8c3ec/df5cd/_images/pyvista-chart2d-x_range-1_00_00.png