How to Customize the GanttGrid Header in WPF GanttControl?
In the Syncfusion WPF GanttControl, you can customize the GanttGrid header by following these steps:
Step 1: Initialize the Gantt control and assign the item collection to its ItemsSource property to populate it with data, as mentioned in the User Guide documentation.
<gantt:GanttControl x:Name="gantt"
ItemsSource="{Binding Tasks}">
</gantt:GanttControl>
Step 2: Customize the appearance of the TreeGridHeaderCell in the Gantt control by defining a style.
<Style TargetType="syncfusion:TreeGridHeaderCell">
<Setter Property="FontWeight"
Value="Bold" />
<Setter Property="FontSize"
Value="14" />
<Setter Property="Background"
Value="LightPink" />
<Setter Property="Foreground"
Value="DarkBlue" />
</Style>
<gantt:GanttControl x:Name="gantt"
ItemsSource="{Binding Tasks}">
</gantt:GanttControl>
Output:
Conclusion:
I hope you enjoyed learning how to customize the GanttGrid header in the WPF GanttControl.
You can refer to our WPF GanttControl feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF GanttControl examples to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!