BoldSign®Effortlessly integrate e-signatures into your app with the BoldSign® API. Create a sandbox account!
Hello,
I'm trying to increase the size of the connector end decorators.
I tried to apply a scale transform to the DecoratorStyle but the decorator remains the same.
Thank you.
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
Thank you
Hi Eshar,
You are most welcome, please get back to us if you need any other assistance. We are glad and happy to assist as always.
Regards,
Karkuvel Rajan S