Enum ScrollLimitMode
Defines the scrollable region of the diagram.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum ScrollLimitMode
Examples
<SfDiagramComponent >
<ScrollSettings @bind-ScrollLimit="@scrollLimit">
</ScrollSettings>
</SfDiagramComponent>
@code
{
ScrollLimitMode scrollLimit { get; set; } = ScrollLimitMode.Infinity;
}
Fields
| Name | Description |
|---|---|
| Diagram | Enables scrolling to view the diagram content. |
| Infinity | The Diagram will be extended when we try to scroll the through it. |
| Limited | Enables scrolling to view the specified area. |