dotnetCHARTING Send comments on this topic.
LimitMode Property
See Also  Example
dotnetCHARTING Namespace > Series Class : LimitMode Property


Determine the type of limitation for Limit and SplitByLimit properties. Default is Top.

Syntax

Visual Basic (Declaration) 
Public Property LimitMode As LimitMode
Visual Basic (Usage)Copy Code
Dim instance As Series
Dim value As LimitMode
 
instance.LimitMode = value
 
value = instance.LimitMode
C# 
public LimitMode LimitMode {get; set;}

Example

The following setting returns the number of minimum elements or series.
C#Copy Code
series.LimitMode = LimitMode.Bottom;
    
Visual BasicCopy Code
series.LimitMode = LimitMode.Bottom

Remarks

This property works in conjunction with Limit or SplitByLimit to determine which elements or series should be included or excluded.

See Also

© 2010 All Rights Reserved.