I'm having this weird issue with the RadChartView when I try to use label rotation to try to improve label legibility, but it seems like a lot of space is being wasted. I'm only adding the following code:
axisX.LabelTemplate = (DataTemplate)Resources[
"tinyTemplate"
];
// The following lines are commented to achieve the noRotation.png image
axisX.LabelRotationAngle = -45;
axisX.LabelFitMode = Telerik.Charting.AxisLabelFitMode.Rotate;
<
DataTemplate
x:Key
=
"tinyTemplate"
>
<
TextBlock
FontSize
=
"7pt"
Text
=
"{Binding}"
/>
</
DataTemplate
>