dotnetCHARTING Send comments on this topic.
RunChart(SeriesCollection) Method
See Also 
dotnetCHARTING Namespace > StatisticalEngine Class > RunChart Method : RunChart(SeriesCollection) Method


sc
A collection of series objects. For example, to evaluate this indicator for two series you will need to pass a series collection containing this two series.
Create the run chart for a given SeriesCollection object.

Syntax

Visual Basic (Declaration)  
Public Overloads Shared Function RunChart( _
   ByVal sc As SeriesCollection _
) As SeriesCollection
Visual Basic (Usage) Copy Code
Dim sc As SeriesCollection
Dim value As SeriesCollection
 
value = StatisticalEngine.RunChart(sc)
C#  
public static SeriesCollection RunChart( 
   SeriesCollection sc
)

Parameters

sc
A collection of series objects. For example, to evaluate this indicator for two series you will need to pass a series collection containing this two series.

Exceptions

Exception Description
ArgumentException Thrown if the sc does not contain any series.

See Also