In Development
Last Updated: 19 Feb 2026 10:31 by ADMIN
Teddy
Created on: 10 Feb 2026 11:09
Category: Chart
Type: Bug Report
1
Chart: [WinUI] Last x-axis label is clipped when y-axis is right positioned and x-axis plot mode is on ticks

Last label on the x axis is clipped, when the y axis is right positioned and x axis plot mode is on ticks.

1 comment
ADMIN
Didi
Posted on: 12 Feb 2026 09:09

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