.netCHARTING v10.5 Documentation
Example 


dotnetCHARTING Namespace > Series Class : SplitByLimit Property
SplitByLimit Property (Series)
Gets or sets the number of series created using SplitBy.
Syntax
'Declaration
 
Public Property SplitByLimit As String
'Usage
 
Dim instance As Series
Dim value As String
 
instance.SplitByLimit = value
 
value = instance.SplitByLimit
public string SplitByLimit {get; set;}
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.

Example
de.SplitByLimit="3";
de.SplitByLimit="2x3";
de.SplitByLimit="3"
de.SplitByLimit="2x3"
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also