SurfaceGridSeries3DInsertRowBackAndScroll Method |
LightningChart .NET Help
Insert new data row on the back and drop the first row of data off. This is a performance optimized
method for adding one row periodically in real-time, like in FFT spectrum monitor. Refreshes chart.
Namespace:
Arction.Wpf.ChartingMVVM.Series3D
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic SurfaceGridSeries3DSurfaceGridInsertResult InsertRowBackAndScroll(
double[] rowValuesY,
double newSeriesZMin,
double newSeriesZMax,
double newZAxisMin,
double newZAxisMax
)
Public Function InsertRowBackAndScroll (
rowValuesY As Double(),
newSeriesZMin As Double,
newSeriesZMax As Double,
newZAxisMin As Double,
newZAxisMax As Double
) As SurfaceGridSeries3DSurfaceGridInsertResult
public:
SurfaceGridSeries3DSurfaceGridInsertResult InsertRowBackAndScroll(
array<double>^ rowValuesY,
double newSeriesZMin,
double newSeriesZMax,
double newZAxisMin,
double newZAxisMax
)
Parameters
- rowValuesY
- Type: SystemDouble
New row Y values. - newSeriesZMin
- Type: SystemDouble
Z minimum of the series, after scrolling. - newSeriesZMax
- Type: SystemDouble
Z maximum of the series, after scrolling. - newZAxisMin
- Type: SystemDouble
Z-axis minimum, after scrolling. - newZAxisMax
- Type: SystemDouble
Z-axis maximum, after scrolling.
Return Value
Type:
SurfaceGridSeries3DSurfaceGridInsertResultReturn value.
See Also