Add / Remove Items
Before proceding with adding/removing items, check Types of Items topic.
Add Items
In order to add new item to RadGanttView, first you have to create an instance of the class Telerik.Windows.Controls.GanttView.GanttTask, set its properties like Start, End, Title etc, and then add it to the TasksSource collection of the control.
In case you need to add a child to a summary task, you should add it to its Children collection:
Remove Items
In order to remove a task you have to remove it from the TasksSource collection of the control or Children collection of a summary task:
Note that when removing a task, you should also remove programmatically the relations to this item.