I have a long label which is returned from Category, but the LabelFitMode Multiline in the below chart on the VerticalAxis does not result in the label wrapping to another line.
<telerikChart:RadCartesianChart x:Name="OSVersion" Palette="{StaticResource BarGraphPalette}" HeightRequest="{Binding OsSummary.Progression, Mode=OneWay, Converter={StaticResource listToHeightConverter}, ConverterParameter=50}"> <telerikChart:RadCartesianChart.Grid> <telerikChart:CartesianChartGrid MajorLinesVisibility="None" MajorLineColor="Transparent"/> </telerikChart:RadCartesianChart.Grid> <telerikChart:RadCartesianChart.HorizontalAxis> <telerikChart:NumericalAxis ShowLabels="True"/> </telerikChart:RadCartesianChart.HorizontalAxis> <telerikChart:RadCartesianChart.VerticalAxis> <telerikChart:CategoricalAxis GapLength="0.3" ShowLabels="True" LabelFitMode="MultiLine" PlotMode="BetweenTicks"/> </telerikChart:RadCartesianChart.VerticalAxis> <telerikChart:RadCartesianChart.Series> <telerikChart:BarSeries ItemsSource="{Binding OsSummary.Progression}" ShowLabels="True" > <telerikChart:BarSeries.ValueBinding> <telerikChart:PropertyNameDataPointBinding PropertyName="Value" /> </telerikChart:BarSeries.ValueBinding> <telerikChart:BarSeries.CategoryBinding> <telerikChart:PropertyNameDataPointBinding PropertyName="Category"/> </telerikChart:BarSeries.CategoryBinding> </telerikChart:BarSeries> </telerikChart:RadCartesianChart.Series></telerikChart:RadCartesianChart>