Enum NodeShapes
Specifies the type of node.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum NodeShapes
Examples
Node node = new Node()
{
Shape = new BasicShape() { Shape = NodeBasicShapes.Plus, Type = NodeShapes.Basic },
};
Fields
| Name | Description |
|---|---|
| Basic | Allows defining a shape from the available built-in basic shapes. |
| Bpmn | Allows defining a shape from the available built-in BPMN shapes. |
| Flow | Allows defining a shape from the available built-in flow shapes. |
| HTML | Allows setting a custom template for a node. |
| Image | Allows creating an image node. |
| Path | Allows defining a custom node from path data. |
| SVG | Allows creating a native SVG node. |
| Text | Defines a shape type Text from the built-in shape types. |