New to Telerik UI for WPF? Download free 30-day trial

Highlighting Items

With RadGanttView you can easily highlight certain tasks in order to make them distinguishable on the Gantt chart.They can be, for example, late tasks or tasks participating in the critical path.

In this topic we will explain how you can define a collection of highlighted tasks and bind it to the HighlightedItemsSource property of the RadGanttView.

Before proceding with the tutorial, check Implementing View-ViewModel topic where it is explained how to bind the GanttView with a ViewModel.

  • First, define a property in the ViewModel which should hold the highlighted tasks:

public class MyViewModel : PropertyChangedBase 
{ 
    private ObservableCollection<GanttTask> tasks; 
 
    public ObservableCollection<GanttTask> Tasks 
    { 
        //... 
        get; 
        set; 
    } 
 
    private ObservableCollection<GanttTask> highlightedTasks; 
 
    public ObservableCollection<GanttTask> HighlightedTasks 
    { 
        get 
        { 
            return highlightedTasks; 
        } 
        set 
        { 
            highlightedTasks = value; 
            OnPropertyChanged(() => HighlightedTasks); 
        } 
    } 
    //... 
} 
  • Then add the needed tasks to the HighlightedTasks:

public MyViewModel() 
{ 
    //... 
    this.HighlightedTasks = new ObservableCollection<GanttTask>() { Tasks[0], Tasks[2] }; 
} 
  • Finally, bind the HighlightedTasks to HighlightedItemsSource property:

<telerik:RadGanttView x:Name="ganttView"  
                      TasksSource="{Binding Tasks}"  
                      HighlightedItemsSource="{Binding HighlightedTasks}" /> 

The end result should look like this:

ganttview items highlighting

In this article