Enum DiagramInteractions
Allows the users to customize the selection, zooming, and interaction behavior of the diagram.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
[Flags]
public enum DiagramInteractions
Examples
<SfDiagramComponent Width="1000px" Height="1000px" DiagramInteractions="Tools" >
</SfDiagramComponent>
@code
{
DiagramInteractions Tools = DiagramInteractions.ContinuousDraw;
}
Fields
| Name | Description |
|---|---|
| ContinuousDraw | It enables users to draw the drawing objects continuously. |
| Default | By default, it allows users to select an individual as well as multiple nodes and connectors. |
| DrawOnce | It enables users to draw the drawing objects at once. |
| MultipleSelect | It allows users to select multiple nodes and connectors. |
| None | It disables the selection, zooming, and interaction behavior of the diagram. |
| SingleSelect | It allows users to select one node or connector at a time. |
| ZoomPan | It allows users to pan the diagram. |