I have a column chart that is grouped with CategoryAxis.
My problem is that when the columns are grouped together, there is no spacing / field between the columns.
I tried applying the label style in DataPoint, but the only thing that does is move all the columns, but not apply a marker for each column.
See image:
Style Code:
<Charting:ColumnSeries.DataPointStyle> <Style TargetType="Charting:ColumnDataPoint"> <Setter Property="Margin" Value="10, 0, 0, 0"/> <Setter Property="MaxWidth" Value="5" /> <Setter Property="MaxWidth" Value="5" /> </Style> </Charting:ColumnSeries.DataPointStyle>
source share