BarSeries3DAddValues Method |
LightningChart .NET Help
Add values to end of series.
Namespace:
Arction.Wpf.Charting.Series3D
Assembly:
Arction.Wpf.Charting.LightningChart (in Arction.Wpf.Charting.LightningChart.dll) Version: 10.3.1
Syntaxpublic int AddValues(
BarSeriesValue3D[] values,
bool invalidateChart
)
Public Function AddValues (
values As BarSeriesValue3D(),
invalidateChart As Boolean
) As Integer
public:
int AddValues(
array<BarSeriesValue3D^>^ values,
bool invalidateChart
)
Parameters
- values
- Type: Arction.Wpf.ChartingBarSeriesValue3D
Values. - 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:
Int32Value count after adding.
See Also