Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / SpreadChart Class / SpreadChart Constructor / SpreadChart Constructor(String,SpreadChartType,String,String,String,Double,Double,Double,Double)
The name of the chart.
The type of the chart.
The items formula for the chart.
The name formula for the chart.
The data formula for the chart.
The x location of the chart.
The y location of the chart.
The width of the chart.
The height of the chart.


In This Topic
    SpreadChart Constructor(String,SpreadChartType,String,String,String,Double,Double,Double,Double)
    In This Topic
    Initializes a new instance of the SpreadChart class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal name As String, _
       ByVal type As SpreadChartType, _
       ByVal itemsFormula As String, _
       ByVal nameFormula As String, _
       ByVal dataFormula As String, _
       ByVal x As Double, _
       ByVal y As Double, _
       ByVal width As Double, _
       ByVal height As Double _
    )
    'Usage
     
    Dim name As String
    Dim type As SpreadChartType
    Dim itemsFormula As String
    Dim nameFormula As String
    Dim dataFormula As String
    Dim x As Double
    Dim y As Double
    Dim width As Double
    Dim height As Double
     
    Dim instance As New SpreadChart(name, type, itemsFormula, nameFormula, dataFormula, x, y, width, height)
    public SpreadChart( 
       string name,
       SpreadChartType type,
       string itemsFormula,
       string nameFormula,
       string dataFormula,
       double x,
       double y,
       double width,
       double height
    )

    Parameters

    name
    The name of the chart.
    type
    The type of the chart.
    itemsFormula
    The items formula for the chart.
    nameFormula
    The name formula for the chart.
    dataFormula
    The data formula for the chart.
    x
    The x location of the chart.
    y
    The y location of the chart.
    width
    The width of the chart.
    height
    The height of the chart.
    Remarks
    The itemsFormula 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 type parameter indicates which type of chart will be added.
    See Also