ChartSheet.ChartType 屬性
取得或設定 Microsoft.Office.Tools.Excel.ChartSheet 型別。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel.v4.0.Utilities (在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
Property ChartType As XlChartType
XlChartType ChartType { get; set; }
屬性值
型別:Microsoft.Office.Interop.Excel.XlChartType
其中一個 XlChartType 值。
備註
樞紐分析圖報表無法使用某些圖表類型。
範例
下列程式碼範例會使用 ChartType 屬性,將目前 Microsoft.Office.Tools.Excel.ChartSheet 的類型設定為立體群組橫條圖。
Private Sub AdjustChartSheet()
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.xl3DBarClustered
End Sub
private void AdjustChartSheet()
{
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.xl3DBarClustered;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。