Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / AddSurfaceChart Method / AddSurfaceChart(String,SpreadSurfaceChartType,String,Int32,Double,Int32,Double,Int32,Double,Int32,Double) Method
The name of the surface chart.
Type of the chart.
The data formula.
The row.
The row offset.
The column.
The column offset.
The end row.
The end row offset.
The end column.
The end column offset.


In This Topic
    AddSurfaceChart(String,SpreadSurfaceChartType,String,Int32,Double,Int32,Double,Int32,Double,Int32,Double) Method
    In This Topic
    Adds the surface chart.
    Syntax
    'Declaration
     
    Public Overloads Function AddSurfaceChart( _
       ByVal name As String, _
       ByVal chartType As SpreadSurfaceChartType, _
       ByVal dataFormula As String, _
       ByVal row As Integer, _
       ByVal rowOffset As Double, _
       ByVal column As Integer, _
       ByVal columnOffset As Double, _
       ByVal endRow As Integer, _
       ByVal endRowOffset As Double, _
       ByVal endColumn As Integer, _
       ByVal endColumnOffset As Double _
    ) As SpreadSurfaceChart
    'Usage
     
    Dim instance As Worksheet
    Dim name As String
    Dim chartType As SpreadSurfaceChartType
    Dim dataFormula As String
    Dim row As Integer
    Dim rowOffset As Double
    Dim column As Integer
    Dim columnOffset As Double
    Dim endRow As Integer
    Dim endRowOffset As Double
    Dim endColumn As Integer
    Dim endColumnOffset As Double
    Dim value As SpreadSurfaceChart
     
    value = instance.AddSurfaceChart(name, chartType, dataFormula, row, rowOffset, column, columnOffset, endRow, endRowOffset, endColumn, endColumnOffset)
    public SpreadSurfaceChart AddSurfaceChart( 
       string name,
       SpreadSurfaceChartType chartType,
       string dataFormula,
       int row,
       double rowOffset,
       int column,
       double columnOffset,
       int endRow,
       double endRowOffset,
       int endColumn,
       double endColumnOffset
    )

    Parameters

    name
    The name of the surface chart.
    chartType
    Type of the chart.
    dataFormula
    The data formula.
    row
    The row.
    rowOffset
    The row offset.
    column
    The column.
    columnOffset
    The column offset.
    endRow
    The end row.
    endRowOffset
    The end row offset.
    endColumn
    The end column.
    endColumnOffset
    The end column offset.
    See Also