Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / AddChart Method / AddChart(String,SpreadChartType,String,String,String,Double,Double,Double,Double) Method
The name of the chart.
The type of the chart.
The item label formula.
The series name formula.
The data formula.
The x value or left position.
The y value or top position.
The width of chart.
The height of chart.


In This Topic
    AddChart(String,SpreadChartType,String,String,String,Double,Double,Double,Double) Method
    In This Topic
    Adds the chart in the sheet.
    Syntax
    'Declaration
     
    Public Overloads Function AddChart( _
       ByVal name As String, _
       ByVal chartType 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 _
    ) As SpreadChart
    'Usage
     
    Dim instance As Worksheet
    Dim name As String
    Dim chartType 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 value As SpreadChart
     
    value = instance.AddChart(name, chartType, itemsFormula, nameFormula, dataFormula, x, y, width, height)
    public SpreadChart AddChart( 
       string name,
       SpreadChartType chartType,
       string itemsFormula,
       string nameFormula,
       string dataFormula,
       double x,
       double y,
       double width,
       double height
    )

    Parameters

    name
    The name of the chart.
    chartType
    The type of the chart.
    itemsFormula
    The item label formula.
    nameFormula
    The series name formula.
    dataFormula
    The data formula.
    x
    The x value or left position.
    y
    The y value or top position.
    width
    The width of chart.
    height
    The height of chart.
    See Also