dotnetCHARTING Send comments on this topic.
SplitByName(String,LimitMode,Boolean,String) Method
See Also 
dotnetCHARTING Namespace > Series Class > SplitByName Method : SplitByName(String,LimitMode,Boolean,String) Method


splitByLimit
Determine the number of series created.
limitMode
Determine the type of limitation. Default is Top.
showOther
Determine whether the additional series are aggregated into a single series or not.
otherLable
Set the label used for the series created.
Splits a series to multiple series based on element subvalue's name.

Syntax

Visual Basic (Declaration)  
Public Overloads Function SplitByName( _
   ByVal splitByLimit As String, _
   ByVal limitMode As LimitMode, _
   ByVal showOther As Boolean, _
   ByVal otherLable As String _
) As SeriesCollection
Visual Basic (Usage) Copy Code
Dim instance As Series
Dim splitByLimit As String
Dim limitMode As LimitMode
Dim showOther As Boolean
Dim otherLable As String
Dim value As SeriesCollection
 
value = instance.SplitByName(splitByLimit, limitMode, showOther, otherLable)
C#  
public SeriesCollection SplitByName( 
   string splitByLimit,
   LimitMode limitMode,
   bool showOther,
   string otherLable
)

Parameters

splitByLimit
Determine the number of series created.
limitMode
Determine the type of limitation. Default is Top.
showOther
Determine whether the additional series are aggregated into a single series or not.
otherLable
Set the label used for the series created.

See Also