PointLineSeriesAddPoints Method (SeriesErrorPoint, Boolean) |
LightningChart .NET Help
Add points with error tolerance to end of series
Namespace:
Arction.Wpf.Charting.SeriesXY
Assembly:
Arction.Wpf.Charting.LightningChart (in Arction.Wpf.Charting.LightningChart.dll) Version: 10.3.1
Syntaxpublic int AddPoints(
SeriesErrorPoint[] points,
bool invalidateChart
)
Public Function AddPoints (
points As SeriesErrorPoint(),
invalidateChart As Boolean
) As Integer
public:
int AddPoints(
array<SeriesErrorPoint>^ points,
bool invalidateChart
)
Parameters
- points
- Type: Arction.Wpf.ChartingSeriesErrorPoint
Points - invalidateChart
- Type: SystemBoolean
Update chart after adding. Updating will raise CPU load,
so you maybe don't want to use this with every call if points are added many times per second.
Return Value
Type:
Int32Point count after adding
See Also