3 Answers, 1 is accepted
Thanks for contacting us. To make the Pie chart bigger you can collapse the chart legend by setting its property Visibility="Collapsed". Other thing you can do is to give some value to the RadiusFactor property of the PieSeriesDefinition (for example RadiusFactor="1").
To be able to increase the size of Item Labels in your Pie chart (by setting custom value to FontSize property) take a look at this help topic - http://www.telerik.com/help/wpf/radchart-styling-and-appearance-styling-item-labels.html.
Hope this answers your questions and helps you getting started with our control.
All the best,
Evgenia
the Telerik team

<
telerikCharting:ChartDefaultView.ChartArea>
<telerikCharting:ChartArea LegendName="structuresLegend" LabelFormatBehavior="HumanReadable" ItemClick="ChartArea_ItemClick">
<telerikCharting:ChartArea.DataSeries>
<telerikCharting:DataSeries LegendLabel="Structures">
<telerikCharting:DataSeries.Definition>
<telerikCharting:PieSeriesDefinition RadiusFactor="1" ShowItemToolTips="True"></telerikCharting:PieSeriesDefinition>
</telerikCharting:DataSeries.Definition>
</telerikCharting:DataSeries>
</telerikCharting:ChartArea.DataSeries>
</telerikCharting:ChartArea>
</telerikCharting:ChartDefaultView.ChartArea>
Note that the documentation is lacking where one doesn't know WHAT the values for any given property COULD be. I did a search on 'RadiusFactor' and don't see much on the settings one can use and what it affects. Is there somewhere that lists out all of the various bits and pieces along with the values accepted? This is probably the one thing I'm finding with the documentation is that information like this is scattered throughout in tutorials and such making the quicklookup almost impossible.
Thanks for any help you can provide.
Best regards...Bob
Bob McCormick
Lockheed Martin
I reproduced your XAML code and found the result very satisfactory.The Pie fills most of the window and without overlapping the legend. Take a look at the screenshot I attached. Have in mind that RadiusFactor property can accept values between the range of 0 to 1 (default value is 0.85). By setting it the value 1, it tells the Pie to stretch across the entire window.
As for the documentation -- indeed we must admit there are some areas where information is lacking but we are always trying to improve the state of the help articles and we have forwarded your feedback to our technical writers as well (the relevant help articles will be updated with information about the RadiusFactor property, too).
Kind regards,
Evgenia
the Telerik team