Skip to main content
All docs
V26.1
  • GanttConnector.ShadowThickness Property

    Gets or sets the thickness of the Connector‘s shadow. This is a dependency property.

    Namespace: DevExpress.Xpf.Gantt

    Assembly: DevExpress.Xpf.Gantt.v26.1.dll

    NuGet Package: DevExpress.Wpf.Gantt

    Declaration

    public double ShadowThickness { get; set; }

    Property Value

    Type Description
    Double

    The width of the connector’s shadow.

    Remarks

    The code sample below demonstrates how to change the Connector‘s thickness.

    <dxgn:GanttControl ItemsSource="{Binding Tasks}"> 
        <dxgn:GanttControl.View> 
            <dxgn:GanttView ...> 
                <dxgn:GanttView.ConnectorStyle> 
                    <Style TargetType="dxgn:GanttConnector"> 
                        <Setter Property="ShadowThickness" Value="2"/> 
                    </Style> 
                </dxgn:GanttView.ConnectorStyle> 
            </dxgn:GanttView> 
        </dxgn:GanttControl.View> 
    </dxgn:GanttControl> 
    
    See Also