This question is locked. New answers and comments are not allowed.
Whenever I try to programmatically create a piechart I first see the proper graph and then it appears the graph is surrounded by a boarder box which clips part of the labels.
RadPieChart Piechart = new RadPieChart();
PieSeries Pieseries = new PieSeries() { ShowLabels = true };
Pieseries.ItemsSource = list;
Pieseries.ValueBinding =
new PropertyNameDataPointBinding("Value");
Piechart.Name = curr.Title;
Piechart.Series.Add(Pieseries);
Piechart.Margin =
new Thickness(30);
this.ChartsPanel.Children.Add(Piechart);
any help would be great.