Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Chart Namespace / SpreadChart Class / SpreadChart Constructor / SpreadChart Constructor(String,String,String,Type)
The category formula.
The name formula.
The data formula.
Type of the series.
Example


In This Topic
    SpreadChart Constructor(String,String,String,Type)
    In This Topic
    Initializes a new instance of the SpreadChart class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal categoryFormula As String, _
       ByVal nameFormula As String, _
       ByVal dataFormula As String, _
       ByVal seriesType As Type _
    )
    'Usage
     
    
    Dim categoryFormula As String
    Dim nameFormula As String
    Dim dataFormula As String
    Dim seriesType As Type
     
    Dim instance As New SpreadChart(categoryFormula, nameFormula, dataFormula, seriesType)

    Parameters

    categoryFormula
    The category formula.
    nameFormula
    The name formula.
    dataFormula
    The data formula.
    seriesType
    Type of the series.
    Remarks
    The categoryFormula is for the axis title. The nameFormula is for the names of the series (SeriesName).  The dataFormula is for the actual data in each series. The seriesType parameter indicates which type of chart will be added.
    Example
    This example creates a chart control.
    See Also