GanttSummaryTaskControl.BracketThickness Property
Gets or sets a summary task’s bracket indent. This is a dependency property.
Namespace: DevExpress.Xpf.Gantt
Assembly: DevExpress.Xpf.Gantt.v24.1.dll
NuGet Package: DevExpress.Wpf.Gantt
Declaration
Property Value
Type | Description |
---|---|
Thickness | A bracket thickness. |
Remarks
Use the BracketThickness property to define a summary task’s bracket indent.
Example
<dxgn:GanttControl ItemsSource="{Binding Tasks}">
...
<dxgn:GanttControl.View>
<dxgn:GanttView ...>
<dxgn:GanttView.SummaryTaskStyle>
<Style TargetType="dxgn:GanttSummaryTaskControl">
<Setter Property="BracketThickness" Value="2,3,2,0"/>
</Style>
</dxgn:GanttView.SummaryTaskStyle>
</dxgn:GanttView>
</dxgn:GanttControl.View>
</dxgn:GanttControl>
See Also