dotnetCHARTING Send comments on this topic.
RChart(SeriesCollection) Method
See Also 
dotnetCHARTING Namespace > StatisticalEngine Class > RChart Method : RChart(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 R Chart chart for a given SeriesCollection object.

Syntax

Visual Basic (Declaration)  
Public Overloads Shared Function RChart( _
   ByVal sc As SeriesCollection _
) As Series
Visual Basic (Usage) Copy Code
Dim sc As SeriesCollection
Dim value As Series
 
value = StatisticalEngine.RChart(sc)
C#  
public static Series RChart( 
   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