Controls the gap between the bars in percents of the floor grid cell width.
The following example creates a gap between the adjacent bars of a cluster bar chart.
Dim bar1 As BarSeries = Chart.Series.Add(SeriesType.Bar)
Dim bar2 As BarSeries = Chart.Series.Add(SeriesType.Bar)
bar2.MultiBarMode = MultiBarMode.Clustered
bar1.GapPercent = 10
bar2.GapPercent = 10
BarSeries bar1 = Chart.Series.Add(SeriesType.Bar);
BarSeries bar2 = Chart.Series.Add(SeriesType.Bar);
bar2.MultiBarMode = MultiBarMode.Clustered;
bar1.GapPercent = 10;
bar2.GapPercent = 10;
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2