Propriedade ChartSheet.DataTable

Obtém um DataTable o objeto que representa o Microsoft.Office.Tools.Excel.ChartSheet tabela de dados.

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)

Sintaxe

'Declaração
ReadOnly Property DataTable As DataTable
    Get
DataTable DataTable { get; }

Valor de propriedade

Tipo: Microsoft.Office.Interop.Excel.DataTable
A DataTable o objeto que representa o Microsoft.Office.Tools.Excel.ChartSheet tabela de dados.

Exemplos

O seguinte exemplo de código usa a DataTable a propriedade do atual Microsoft.Office.Tools.Excel.ChartSheet para exibir uma tabela de dados no gráfico com um contorno de borda.

Private Sub DisplayDataTable()
    Globals.Sheet1.Range("A1", "A5").Value2 = 22
    Globals.Sheet1.Range("B1", "B5").Value2 = 55

    Me.SetSourceData(Globals.Sheet1.Range("A1", "B5"), _
        Excel.XlRowCol.xlColumns)
    Me.ChartType = Excel.XlChartType.xl3DColumn
    Me.HasDataTable = True
    Me.DataTable.HasBorderOutline = True
End Sub
private void DisplayDataTable()
{
    Globals.Sheet1.Range["A1", "A5"].Value2 = 22;
    Globals.Sheet1.Range["B1", "B5"].Value2 = 55;

    this.SetSourceData(Globals.Sheet1.Range["A1", "B5"],
        Excel.XlRowCol.xlColumns);
    this.ChartType = Excel.XlChartType.xl3DColumn;

    this.HasDataTable = true;
    this.DataTable.HasBorderOutline = true;
}

Segurança do .NET Framework

Consulte também

Referência

ChartSheet Interface

Namespace Microsoft.Office.Tools.Excel