This question is locked. New answers and comments are not allowed.
There is a problem with items relations, it seems that control only support Finsh to Start relations.
This code is from documentation, but if we put Type like this, there is no change on ganttview there is code for other types of relationships but it is not working. Please help.
var firstTask = new GanttTask( date, date.AddHours(15), "task 1"); var secondTask = new GanttTask(date.AddDays(1), date.AddDays(1).AddHours(15), "task 2"); firstTask.SetRelations( new List<Relation>() { new Relation(){Task = secondTask}});
This code is from documentation, but if we put Type like this, there is no change on ganttview there is code for other types of relationships but it is not working. Please help.
firstTask.SetRelations( new List<Relation>() { new Relation(){Task = secondTask, Type = RelationType.StartStart});