[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IChart.GapDepth

GapDepth Property

GapDepth

Gets or sets the distance between the data series in a 3-D chart as a percentage of the marker width.

This property applies to 3-D charts. The returned value is in the range from 0 to 500.

Declaration
int GapDepth { get; set; }
Property GapDepth As Integer
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered3D, 20, 20, 300, 200).Chart;
chart.GapDepth = 200;
int gapDepth = chart.GapDepth;