Enum DecoratorShape
Specifies the decorator shape of the connector.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum DecoratorShape
Examples
Connector Connector = new Connector()
{
TargetDecorator = new DecoratorSettings()
{
Shape = DecoratorShape.Arrow,
}
};
Fields
| Name | Description |
|---|---|
| Arrow | Sets the decorator’s shape to arrow. |
| Circle | Sets the decorator shape to circle. |
| Custom | Sets the decorator’s shape to custom |
| Diamond | Sets the decorator shape to diamond. |
| DoubleArrow | Sets the decorator’s shape to double arrow |
| Fletch | Sets the decorator shape to fletch. |
| InArrow | Sets the decorator shape to in arrow |
| None | Sets the decorator's shape to none. |
| OpenArrow | Sets the decorator shape to open arrow. |
| OpenFletch | Sets the decorator shape to open fletch |
| OutArrow | Sets the decorator shape to out arrow |
| Square | Sets the decorator shape to square. |