PointLineSeriesAddPoints Method (Double, Double, Boolean) |
LightningChart .NET Help
Add points 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(
double[] xValues,
double[] yValues,
bool invalidateChart
)
Public Function AddPoints (
xValues As Double(),
yValues As Double(),
invalidateChart As Boolean
) As Integer
public:
int AddPoints(
array<double>^ xValues,
array<double>^ yValues,
bool invalidateChart
)
Parameters
- xValues
- Type: SystemDouble
X values array - yValues
- Type: SystemDouble
Y values array - 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