Hi Eshar,
Requirement: How to increase the connector's target
decorator size.
We have achieved your requirement, by setting the height and
width for the TargetDecorator in its style. Please find the code snippet for
your reference in the below table.
|
<!--Style for connector-->
<Style
TargetType="syncfusion:Connector">
<Setter
Property="ConnectorGeometryStyle">
<Setter.Value>
<Style TargetType="Path">
<Setter Property="Stroke" Value="#6BA5D7"/>
<Setter Property="StrokeThickness"
Value="1"/>
</Style>
</Setter.Value>
</Setter>
<!-- Style
for Target Decorator-->
<Setter
Property="TargetDecoratorStyle">
<Setter.Value>
<Style TargetType="Path">
<Setter Property="Fill" Value="#6BA5D7"/>
<Setter Property="StrokeThickness"
Value="1"/>
<Setter Property="Stretch" Value="Fill"/>
<Setter Property="Height" Value="20"/>
<Setter Property="Width" Value="30"/>
</Style>
</Setter.Value>
</Setter>
</Style>
|
Regards,
Arun Kumar S