pyvista.plotting.charts.BarPlot.update#

BarPlot.update(x, y)[source]#

Update the positions and/or size of the bars in this plot.

Parameters:
xarray_like

The new positions of the bars to draw.

yarray_like

The new sizes of the bars to draw.

Examples

Create a bar plot.

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.bar([1, 2, 3], [2, 1, 3])
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/de21fa485228b97491a4495f7dc963d0d536fa65/b4d78/_images/pyvista-plotting-charts-barplot-update-2_00_00.png

Update the bar sizes.

>>> plot.update([1, 2, 3], [3, 1, 2])
>>> chart.show()
https://d33wubrfki0l68.cloudfront.net/a464f873d0264085369c2ab12dd18f81b3e8f1db/e4395/_images/pyvista-plotting-charts-barplot-update-2_01_00.png