<ig:XamGantt x:Name="gantt"
Project="{Binding Project}">
<ig:XamGantt.ViewSettings>
<ig:ProjectViewSettings AreSummaryTasksVisible=" />
</ig:XamGantt.ViewSettings>
</ig:XamGantt>
This topic explains how to configure summary task visibility using the xamGantt™ control.
The following topics are prerequisites to understanding this topic:
This topic contains the following sections:
By default, summary tasks are visible in the xamGantt control.
Configure summary task visibility via the ProjectViewSettings AreSummaryTasksVisible property.
The following table maps the desired configuration to property settings.
The example below demonstrates how to hide the summary tasks:
In XAML:
<ig:XamGantt x:Name="gantt"
Project="{Binding Project}">
<ig:XamGantt.ViewSettings>
<ig:ProjectViewSettings AreSummaryTasksVisible=" />
</ig:XamGantt.ViewSettings>
</ig:XamGantt>
The following topics provide additional information related to this topic.