Category / Section
How to customize the space between segments in WPF Chart (SfChart)?
1 min read
WPF Chart (SfChart) allows you to customize the space between the individual segments. You can set the space between the segments by using Spacing property of ChartSeriesBase Instance.
Note:
The default value of the spacing is 0.2.
XAML
<syncfusion:ColumnSeries Label="ColumnSeries" ItemsSource="{Binding Computers}" XBindingPath="Computer" YBindingPath="Year2013" syncfusion:ChartSeriesBase.Spacing="0.5"/>