Hi,
I am working with the Gantt but i have some doubts and i wonder if someone could help me.
Number 1: I want to put in the table that it is in the gantt, more columns. I dont need to show the data in the graphic but i need that the user see them in the left table near the columns End and Start. For example the person that is asign to the project, or the coordinator. I see that the class "
GanttTask" only can be invoque with this parameters..
public
GanttTask(DateTime start, DateTime end);
public GanttTask(DateTime start, DateTime end, string title);
public GanttTask(DateTime start, DateTime end, string title, IEnumerable<IRelation> relations);
It is possible to put more columns??
Number 2: Also i need to know if i could change the name title to my Gantt, because if i have this code i have the columns title and then de other Project Name
TITLE || Project Name || A/ETA || A/ETS
<Grid x:Name="LayoutRoot">
<telerik:RadGanttView x:Name="ganttView" FontFamily="Comic Sans MS" TasksSource="{Binding Tasks}" HighlightedItemsSource="{Binding HighlightedTasks}" >
<telerik:RadGanttView.Columns>
<!--<telerik:ColumnDefinition MemberBinding="{Binding NumOper}" Header="Num Op." ColumnWidth="90" />-->
<telerik:ColumnDefinition MemberBinding="{Binding Title}" Header="Project Name" ColumnWidth="300"/>
<telerik:ColumnDefinition MemberBinding="{Binding Start}" Header="A/ETA" ColumnWidth="160" />
<telerik:ColumnDefinition MemberBinding="{Binding End}" Header="A/ETS" ColumnWidth="160" />
</telerik:RadGanttView.Columns>
</telerik:RadGanttView>
</Grid>
Number 3: And the last one, can I change the bars and put some image?
Thanks a lot!!!!!!!!!