Skip to main content
A newer version of this page is available. .

GanttConnectorBase.ArrowSize Property

Gets or sets the connector‘s arrow size. This is a dependency property.

Namespace: DevExpress.Xpf.Gantt

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

Declaration

public Size ArrowSize { get; set; }

Property Value

Type Description
Size

A connector’s arrow size.

Remarks

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

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