Skip to main content

GanttSummaryTaskControl.BracketHeight Property

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

Namespace: DevExpress.Xpf.Gantt

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

NuGet Package: DevExpress.Wpf.Gantt

Declaration

public double BracketHeight { get; set; }

Property Value

Type Description
Double

A bracket height.

Remarks

Use the BracketHeight property to define a summary task’s bracket height.

Example

<dxgn:GanttControl ItemsSource="{Binding Tasks}">
...
    <dxgn:GanttControl.View>
        <dxgn:GanttView ...>
            <dxgn:GanttView.SummaryTaskStyle>
                <Style TargetType="dxgn:GanttSummaryTaskControl">
                    <Setter Property="BracketHeight" Value="6"/>
                </Style>
            </dxgn:GanttView.SummaryTaskStyle>
        </dxgn:GanttView>
    </dxgn:GanttControl.View>
</dxgn:GanttControl>
See Also