Enum BoundaryConstraints
Allows users to specify the region of the diagram in which they can interact with it.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum BoundaryConstraints
Examples
<PageSettings @bind-BoundaryConstraints="@constraints" >
</PageSettings>
@code
{
BoundaryConstraints constraints = BoundaryConstraints.Diagram;
}
Fields
| Name | Description |
|---|---|
| Diagram | Allow interactions to take place inside the diagram height and width. |
| Infinity | Allow interactions to take place at the infinite height and width of the diagram region. |
| Page | Allow interactions to take place around the height and width mentioned in the page settings. |