pyvista.plotting.charts.BarPlot.orientation#

property BarPlot.orientation[source]#

Return or set the orientation of the bars in this plot.

Examples

Create a bar plot.

>>> import pyvista
>>> chart = pyvista.Chart2D()
>>> plot = chart.bar([1, 2, 3], [[2, 1, 3], [1, 3, 2]])
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/5f2549462d9237d7afae3255815fb1859386a454/8d452/_images/pyvista-plotting-charts-barplot-orientation-1_00_00.png

Change the orientation to horizontal.

>>> plot.orientation = "H"
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/636048bdc687334087546d50b60f283142366fbb/c7a41/_images/pyvista-plotting-charts-barplot-orientation-1_01_00.png