ChartSheetBase.DataTable Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém um objeto DataTable que representa a tabela de dados ChartSheetBase.
public Microsoft.Office.Interop.Excel.DataTable DataTable { get; }
Valor da propriedade
Um objeto DataTable que representa a tabela de dados ChartSheetBase.
Exemplos
O exemplo de código a seguir usa a DataTable Propriedade do atual Microsoft.Office.Tools.Excel.ChartSheetBase para exibir uma tabela de dados no gráfico com uma estrutura de tópicos de borda.
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;
}
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