ScatterPlot2D.update#
- ScatterPlot2D.update(x, y) None[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#
Download Python source code | Download Jupyter notebook
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()
Update the marker locations.
>>> plot.update([0, 1, 2, 3, 4], [3, 2, 4, 2, 1])
>>> chart.show()