共用方式為


ChartSheet.GapDepth 屬性

取得或設定立體 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 GapDepth As Integer
int GapDepth { get; set; }

屬性值

型別:System.Int32
立體 Microsoft.Office.Tools.Excel.ChartSheet 中的資料數列間距,以資料標記寬度的百分比表示。這個屬性的值必須介於 0 和 500 之間。

範例

下列程式碼範例會使用 GapDepth 屬性,將目前 Microsoft.Office.Tools.Excel.ChartSheet 中的資料數列間距設定為資料標記寛度的 400%。

Private Sub AdjustGapDepth()
    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
    Me.GapDepth = 400
End Sub
private void AdjustGapDepth()
{
    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; 
    this.GapDepth = 400;
}

.NET Framework 安全性

請參閱

參考

ChartSheet 介面

Microsoft.Office.Tools.Excel 命名空間