New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

RTL Support

RadGantt supports right-to-left direction using the direction attribute. You can enable this functionality by setting the control's dir attribute to "rtl":

<telerik:RadGantt RenderMode="Lightweight" runat="server" ID="RadGantt1"
    dir="rtl"
    AutoGenerateColumns="true"
    SelectedView="MonthView"
    Skin="Silk">
</telerik:RadGantt>

This results in the following RadGantt appearance:

RadGantt RTL

For a live example, see Right to Left Support Demo

In this article