Enum DiagramExpandIcons
Specifies the shape of the Expand Icon.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum DiagramExpandIcons
Remarks
To know more about using icon shapes, refer to the icons. To apply the Minus icon shape, use the below code
Examples
Node Node1 = new Node()
{
ExpandIcon = new DiagramExpandIcon() {
Shape = DiagramExpandIcons.Minus,
}
}
Fields
| Name | Description |
|---|---|
| ArrowDown | "The shape of the icon is set to Arrow shape facing downwards" |
| Minus | "The shape of the icon is set to Minus shape" |
| None | "The shape of the icon is set to None" |
| Path | "The shape of the icon is set to path shape" |
| Template | "The shape of the icon is set to Template shape" |