Hi,
See the text below it should be "Test234" and we see "est1234".
How it can be fix ?
Thanks,
<telerikChart:RadCartesianChart Grid.Row="5" Grid.Column="0" x:Name="totalFilesDividedByRoutesChart" Margin="10">
<telerikChart:RadCartesianChart.HorizontalAxis>
<telerikChart:CategoricalAxis PlotMode="OnTicks"/>
</telerikChart:RadCartesianChart.HorizontalAxis>
<telerikChart:RadCartesianChart.VerticalAxis>
<telerikChart:NumericalAxis LabelFitMode="MultiLine" LabelFormat="N0" Minimum="0" />
</telerikChart:RadCartesianChart.VerticalAxis>
<telerikChart:RadCartesianChart.Series>
<telerikChart:BarSeries ValueBinding="Value"
CategoryBinding="RouteName"
ItemsSource="{Binding TotalFilesDividedByRoutesDataSource}" />
</telerikChart:RadCartesianChart.Series>
<telerikChart:RadCartesianChart.Grid>
<telerikChart:CartesianChartGrid StripLinesVisibility="X"
MajorLinesVisibility="XY"
MajorLineColor="LightGray"
MajorLineThickness="3" />
</telerikChart:RadCartesianChart.Grid>
</telerikChart:RadCartesianChart>
This is because like the string is too long and cannot be word-wrapped. The text in that first label isn't going to "push" the entire chart away form the left margin. I've added a yellow highlight so you can see where the boundary of the chart canvas is:
I have two things for you to try:
Other than that, I'm afraid I do not have a solution that doesn't include a custom native platform intervention (which will need to be done via custom renderer). The native control is from the Telerik UI for WinUI Chart, you can learn more about its API here WinUI 3 Chart. For assistance, you can ask the WinUI 3 team here (they are different than the Xamarin or MAUI teams).