pyvista.Chart2D.y_range#

property Chart2D.y_range[source]#

Return or set the range of this chart’s y 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/9fae4/_images/pyvista-chart2d-y_range-1_00_00.png