Last label on the x axis is clipped, when the y axis is right positioned and x axis plot mode is on ticks.
Workaround:
On handler changed access the native chart and set ClipToBounds to false and a left margin.
private void Chart_HandlerChanged(object sender, EventArgs e) { var platformView = MyChart?.Handler?.PlatformView; #if WINDOWS var platformChart = (Telerik.UI.Xaml.Controls.Chart.RadCartesianChart)platformView; platformChart.ClipToBounds = false; platformChart.Margin = new Microsoft.UI.Xaml.Thickness(20, 0, 0, 0); #endif } }
Regards, Didi Progress Telerik