pyvista.plotting.charts.ScatterPlot2D.update#

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

Update this plot’s points.

Parameters:
xarray_like

The new x coordinates of the points to draw.

yarray_like

The new y coordinates of the points to draw.

Examples

Create a scatter plot.

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.scatter([0, 1, 2, 3, 4], [2, 1, 3, 4, 2])
>>> chart.show()
../../../../_images/pyvista-plotting-charts-ScatterPlot2D-update-2_00_00.png

Update the marker locations.

>>> plot.update([0, 1, 2, 3, 4], [3, 2, 4, 2, 1])
>>> chart.show()
../../../../_images/pyvista-plotting-charts-ScatterPlot2D-update-2_01_00.png