miketesch 0 Report post Posted July 26, 2013 I'm looking to create a pie chart where the labels are inside the pie chart even if the slice is too small without changing the size of the text. The text would have to overlay other sections. Is this possible? Quote Share this post Link to post Share on other sites
AndreG 0 Report post Posted July 29, 2013 Hello miketesch, Unfortunately it is not possible to have the pie labels overlap other slices. Your only options would be to either draw outside the slice or make the font size scale to the size of the slice. Regards, Quote Share this post Link to post Share on other sites
JuanC 0 Report post Posted July 29, 2013 Note that to set the font size to scale so that the percentage fits in the slice you would do ChartFX.WPF.Galleries.Pie pie = (ChartFX.WPF.Galleries.Pie) chart1.AllSeries.GalleryAttributes; pie.ScaleLabels = true; There is no way to force inside labels without scaling them, please let is know if this works for your scenario. JuanC Quote Share this post Link to post Share on other sites