Hi,
What is the best way to update the XyzDataSeries3D data?
sciChart3DSurfaceRef.current.renderableSeries.items[0]
does not seem to have way to update xValues, yValues and zValues? these seem to be classes but i could not find the class method.
Thank you,
Pramod
- pramod butte asked 5 months ago
- You must login to post comments
Hello, same as with 2D Renderable Series you need to use “append”, “insert”, “update” and “remove” methods on the Data Series attached to the Renderable Series. Find the related APIs at our typedoc https://www.scichart.com/documentation/js/current/typedoc/classes/xyzdataseries3d.html
and the related Documentation Page
- Jim Risen answered 5 months ago
- last edited 5 months ago
-
Also in your case you need to access the data series rather than renderable series, e.g. sciChart3DSurfaceRef.current.renderableSeries.items[0].dataSeries
- You must login to post comments
Please login first to submit.