Enum NodeBasicShapes
Represents the available built-in basic shapes.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum NodeBasicShapes
Examples
Node node = new Node()
{
Shape = new BasicShape() { Shape = NodeBasicShapes.Plus, Type = NodeShapes.Basic },
};
Fields
| Name | Description |
|---|---|
| Cylinder | Sets the type of basic shape as a Cylinder. |
| Decagon | Sets the type of basic shape as a Decagon. |
| Diamond | Sets the type of basic shape as a Diamond. |
| Ellipse | Sets the type of basic shape as an Ellipse. |
| Heptagon | Sets the type of basic shape as a Heptagon. |
| Hexagon | Sets the type of basic shape as a Hexagon. |
| Octagon | Sets the type of basic shape as a Octagon. |
| Parallelogram | Sets the type of basic shape as a Parallelogram. |
| Pentagon | Sets the type of basic shape as a Pentagon. |
| Plus | Sets the type of basic shape as a Plus. |
| Polygon | Sets the type of basic shape as a Polygon. |
| Rectangle | Sets the type of basic shape as a Rectangle. |
| RightTriangle | Sets the type of basic shape as a Right Triangle. |
| Star | Sets the type of basic shape as a Star. |
| Trapezoid | Sets the type of basic shape as a Trapezoid. |
| Triangle | Sets the type of basic shape as a Triangle. |