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; }
Public Property PointsHistoryLength As Integer
Get
Set
public:
virtual property int PointsHistoryLength {
int get () sealed;
void set (int value) sealed;
}
Property Value
Type:
Int32See Also