I have the Gantt in a RadWizard and it doesnt seem to render correctly. I set the bound column widths and it doesnt care, i set the ListWidth and it doesnt care. It is putting an extra column in the List - looks like a complete column, but as you can see its not even in my Column definitions and autogenerate is false.
See the attached screen shots. One is when i put it INSIDE the Wizard, another is when i have it OUTSIDE the wizard container.
You need to address this.
<telerik:RadGantt RenderMode="Auto" runat="server" ID="RadGanttTasks" DataSourceID="SqlDataSource1" DependenciesDataSourceID="SqlDataSource2" Height="800px" SelectedView="MonthView" AutoGenerateColumns="false" AllowColumnResize="true" DisplayDeleteConfirmation="true" EnablePdfExport="true" SnapToGrid="true" Width="600px" ListWidth="300px" > <Localization /> <YearView SlotWidth="250px" /> <MonthView SlotWidth="250px" /> <WeekView SlotWidth="250px" /> <DayView SlotWidth="250px" /> <Columns> <telerik:GanttBoundColumn UniqueName="Subject" DataField="Title" AllowEdit="true" Width="125px" AllowSorting="false" HeaderText="Task" DataType="String" /> <telerik:GanttBoundColumn UniqueName="StartDate" DataField="Start" AllowEdit="true" Width="105px" AllowSorting="false" HeaderText="Start Date" DataType="DateTime" DataFormatString="MM/dd/yyyy hh:mm tt" /> <telerik:GanttBoundColumn UniqueName="EndDate" DataField="End" AllowEdit="true" Width="105px" AllowSorting="false" HeaderText="End Date" DataType="DateTime" DataFormatString="MM/dd/yyyy hh:mm tt" /> </Columns> <DataBindings> <TasksDataBindings IdField="TaskProjectDetailTemplateId" ParentIdField="TaskProjectDetailTemplateIdParent" StartField="Start" EndField="End" OrderIdField="TaskLevel" ExpandedField="Expanded" PercentCompleteField="PercentComplete" TitleField="Title" SummaryField="Summary" /> <DependenciesDataBindings TypeField="Type" IdField="TaskProjectDetailTemplateDependId" PredecessorIdField="PredecessorID" SuccessorIdField="SuccessorID" /> </DataBindings> </telerik:RadGantt>