Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / SpreadChart Class / SpreadChart Constructor / SpreadChart Constructor(String,SpreadChartType,String,Double,Double,Double,Double)
The name of the chart.
The type of the chart.
The 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,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 formula 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 formula 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, formula, x, y, width, height)
    public SpreadChart( 
       string name,
       SpreadChartType type,
       string formula,
       double x,
       double y,
       double width,
       double height
    )

    Parameters

    name
    The name of the chart.
    type
    The type of the chart.
    formula
    The 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 formula parameter is for the chart data. The type parameter indicates which type of chart will be added.
    See Also