SurfaceGridSeries3DInsertColumnBackAndScroll Method |
LightningChart .NET Help
Insert new column on the back and drop the first column of data off. This is a performance optimized
method for adding one column 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 InsertColumnBackAndScroll(
double[] columnValuesY,
double newSeriesXMin,
double newSeriesXMax,
double newXAxisMin,
double newXAxisMax
)
Public Function InsertColumnBackAndScroll (
columnValuesY As Double(),
newSeriesXMin As Double,
newSeriesXMax As Double,
newXAxisMin As Double,
newXAxisMax As Double
) As SurfaceGridSeries3DSurfaceGridInsertResult
public:
SurfaceGridSeries3DSurfaceGridInsertResult InsertColumnBackAndScroll(
array<double>^ columnValuesY,
double newSeriesXMin,
double newSeriesXMax,
double newXAxisMin,
double newXAxisMax
)
Parameters
- columnValuesY
- Type: SystemDouble
New column Y values. - newSeriesXMin
- Type: SystemDouble
X minimum of the series, after scrolling. - newSeriesXMax
- Type: SystemDouble
X maximum of the series, after scrolling. - newXAxisMin
- Type: SystemDouble
X-axis minimum, after scrolling. - newXAxisMax
- Type: SystemDouble
X-axis maximum, after scrolling.
Return Value
Type:
SurfaceGridSeries3DSurfaceGridInsertResultReturn value.
See Also