Posted
on Feb 9, 2012
(permalink)
I found the way to have different width for each bar series :
radChart1.SeriesMappings[0].SeriesDefinition.ItemStyle = new Style();
radChart1.SeriesMappings[0].SeriesDefinition.ItemStyle.Setters.Add(new Setter(Shape.WidthProperty, Double.Parse("50")));
radChart1.SeriesMappings[1].SeriesDefinition.ItemStyle = new Style();
radChart1.SeriesMappings[1].SeriesDefinition.ItemStyle.Setters.Add(new Setter(Shape.WidthProperty, Double.Parse("80")));
But the result is not right. there is a gap between each series. (attached screenshot)
Is there any way to make it stacked?
Thanks,
Andy