Skip to main content

GanttSummaryTaskControl.BracketIndent Property

Gets or sets a summary task’s bracket indent. This is a dependency property.

Namespace: DevExpress.Xpf.Gantt

Assembly: DevExpress.Xpf.Gantt.v23.2.dll

NuGet Package: DevExpress.Wpf.Gantt

Declaration

public Thickness BracketIndent { get; set; }

Property Value

Type Description
Thickness

A bracket indent.

Remarks

Use the BracketIndent 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="BracketIndent" Value="0,3,0,0"/>
                </Style>
            </dxgn:GanttView.SummaryTaskStyle>
        </dxgn:GanttView>
    </dxgn:GanttControl.View>
</dxgn:GanttControl>
See Also