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

Right-to-left Support

RadGantt supports right-to-left presentation. You merely need to set the dir property for the control to "rtl".

RadGantt renders RadGantt_rtl class and RadGantt_SkinName_rtl when placed in element with dir set to "rtl". This further facilitates skinning RadGantt and providing RTL specific settings.
  • DefaultCS.aspx
  • DefaultCS.aspx.cs
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DefaultCS.aspx.cs" Inherits="Telerik.Web.Examples.GanttExamples.AccessibilityAndInternationalization.RightToLeftSupport.DefaultCS"  %>

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />

    <div class="demo-container no-bg">
        <telerik:RadGantt RenderMode="Lightweight" ID="RadGantt1" dir="rtl" Height="450px" SelectedView="MonthView" runat="server"
            DisplayDeleteConfirmation="false" ListWidth="50%">
        </telerik:RadGantt>
    </div>

    </form>
</body>
</html>

Support & Learning Resources

Find Assistance