Click or drag to resize
NChartPointsHistoryLength Property
Property that determines the maximal length of series' points array. The default value is 1000. The array of points in series is determined after UpdateData call (by querying points from series' data sources) and then can be extended after ExtendData call. The property PointsHistoryLength takes effect by using ExtendData only. The new points are added to the end of the points' array of the series and if the array exceeds the given length, first n points are deleted, where
n = array.length - pointsHistoryLength

Namespace:  NChart3D_UWP
Assembly:  NChart3D_UWP (in NChart3D_UWP.dll)
Syntax
public int PointsHistoryLength { get; set; }

Property Value

Type: Int32
See Also