dotnetCHARTING Send comments on this topic.
SplitByLimit Property
See Also  Example
dotnetCHARTING Namespace > DataEngine Class : SplitByLimit Property


Gets or sets the number of series created using SplitBy.

Syntax

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

Example

C#Copy Code
de.SplitByLimit="3";
de.SplitByLimit=
"2x3";
    
Visual BasicCopy Code
de.SplitByLimit="3";
de.SplitByLimit="2x3";

Example

Remarks

This property works with conjunction of LimitMode property and determines the number of series to include in the return. The limit string can be a number "3" or "2x3". In the second format, the first number determines the group positon and the second number is the limit. By setting "2x3" with top limit mode, it only return the second "3" maximum series.

See Getting Started > Tutorials > Data Engine.

See Also

© 2010 All Rights Reserved.