Hi,
Is it possible to deactivate the grid lines outside of a page? In the page the grid lines should be displayed. Outside the page should only be white.
<SfDiagramComponent @ref="diagram" Width="100%" Height="800px" Nodes="nodeCollection">
<PageSettings Height="300"
Width="300"
Orientation="PageOrientation.Portrait"
MultiplePage="false"
ShowPageBreaks="true"
BoundaryConstraints="BoundaryConstraints.Page">
<BackgroundStyle Background="LightGreen" />
<PageMargin Left="10" Top="10" Bottom="10" Right="10" />
</PageSettings>
<SnapSettings Constraints="SnapConstraints.All" GridType="GridType.Dots">
</SnapSettings>
<ContextMenuSettings Show="true"></ContextMenuSettings>
</SfDiagramComponent>