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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。