Gridlines in UWP Diagram (SfDiagram)

18 Aug 20215 minutes to read

Gridlines are the pattern of lines drawn behind the Diagram elements. It provides a visual guidance while dragging or arranging the objects on the Diagram surface.

Customize the gridlines visibility

The SnapConstraints property of SnapSettings enables you to show/hide the gridlines. The following code example illustrates how to show or hide gridlines.

  • XAML
  • <!--Initialize SfDiagram-->
    <diagram:SfDiagram x:Name="diagram"> 
      <!--Initialize SnapSettings-->		
      <diagram:SfDiagram.SnapSettings>
        <diagram:SnapSettings SnapConstraints="ShowLines"/>
      </diagram:SfDiagram.SnapSettings>
    </diagram:SfDiagram>
  • C#
  • //Shows both Horizontal and Vertical Gridlines
    diagram.SnapSettings.SnapConstraints = SnapConstraints.ShowLines;

    Gridlines

    To show only horizontal/vertical gridlines or to hide gridlines, refer to SnapConstraints.

    Appearance

    You can customize the appearance of the gridlines by using a set of predefined properties. The HorizontalGridLines and VerticalGridLines properties allow to customize the appearance of the gridlines. The following code example illustrates how to customize the appearance of gridlines.

  • C#
  • //Creates collection for the style.
    public class GridLineStyle : List<Style>
    {
    
    }
  • XAML
  • <!--Style for HorizontalGridlines-->
    <local:GridLineStyle x:Key="Horizontalgridline">
    	<Style TargetType="Path">
        	<Setter Property="Stroke" Value="Blue" ></Setter>
            <Setter Property="StrokeDashArray" Value="2"></Setter>
    	</Style>
    </local:GridLineStyle>
    
    <!--Style for VerticalGridlines-->
    <local:GridLineStyle x:Key="Verticalgridline">
    	<Style TargetType="Path">
    		<Setter Property="Stroke" Value="Blue" ></Setter>
        	<Setter Property="StrokeDashArray" Value="2"></Setter>
    	</Style>
    </local:GridLineStyle>
  • XAML
  • <!--Initialize SfDiagram-->
    <syncfusion:SfDiagram x:Name="diagramcontrol">
    	<syncfusion:SfDiagram.SnapSettings>
        	<syncfusion:SnapSettings SnapConstraints="ShowLines">
            	<!--Initialize HorizontalGridlines-->
                  	<syncfusion:SnapSettings.HorizontalGridlines>
                    	<syncfusion:Gridlines Strokes="{StaticResource Horizontalgridline}">
                    	</syncfusion:Gridlines>
    				</syncfusion:SnapSettings.HorizontalGridlines>
                     
    			<!--Initialize VerticalGridlines-->
                <syncfusion:SnapSettings.VerticalGridlines>
                	<syncfusion:Gridlines Strokes="{StaticResource Verticalgridline}">
                    </syncfusion:Gridlines>
                </syncfusion:SnapSettings.VerticalGridlines>
    		</syncfusion:SnapSettings>
       </syncfusion:SfDiagram.SnapSettings>
    </syncfusion:SfDiagram>

    Custom gridlines

    Line Intervals

    Thickness and the space between gridlines can be customized by using LineInterval property. In the lineInterval collections, values at the odd places are referred as the thickness of lines and the values at the even places are referred as the space between gridlines.

    The following code example illustrates how to customize the thickness of lines and the line intervals.

  • C#
  • //Creates collection for the style.
    public class GridLineStyle : List<Style>
    {
    
    }
    
    //Creates collection for the double values.
    public class Intervals : List<double>
    {
    
    }
  • XAML
  • <!--Initializes the double collection-->
    <local:Intervals x:Key="Intervals">
    	<sys:Double>1.25</sys:Double>
        <sys:Double>14</sys:Double>
        <sys:Double>0.25</sys:Double>
        <sys:Double>15</sys:Double>
        <sys:Double>0.25</sys:Double>
        <sys:Double>15</sys:Double>
        <sys:Double>0.25</sys:Double>
        <sys:Double>15</sys:Double>
        <sys:Double>0.25</sys:Double>
        <sys:Double>15</sys:Double>
     </local:Intervals>
    
    <!--Style for HorizontalGridlines-->
    <local:GridLineStyle x:Key="Horizontalgridline">
    	<Style TargetType="Path">
        	<Setter Property="Stroke" Value="Blue" ></Setter>
            <Setter Property="StrokeDashArray" Value="2"></Setter>
    	</Style>
    </local:GridLineStyle>
    
    <!--Style for VerticalGridlines-->
    <local:GridLineStyle x:Key="Verticalgridline">
    	<Style TargetType="Path">
    		<Setter Property="Stroke" Value="Blue" ></Setter>
        	<Setter Property="StrokeDashArray" Value="2"></Setter>
    	</Style>
    </local:GridLineStyle>
  • XAML
  • <!--Initialize SfDiagram-->
    <syncfusion:SfDiagram x:Name="diagramcontrol">
    	<syncfusion:SfDiagram.SnapSettings>
        	<syncfusion:SnapSettings SnapConstraints="ShowLines">
            	<!--Initialize HorizontalGridlines-->
                  	<syncfusion:SnapSettings.HorizontalGridlines>
                    	<syncfusion:Gridlines Strokes="{StaticResource Horizontalgridline}" LinesInterval="{StaticResource Intervals}">
                    	</syncfusion:Gridlines>
    				</syncfusion:SnapSettings.HorizontalGridlines>
                     
    			<!--Initialize VerticalGridlines-->
                <syncfusion:SnapSettings.VerticalGridlines>
                	<syncfusion:Gridlines Strokes="{StaticResource Verticalgridline}" LinesInterval="{StaticResource Intervals}">
                    </syncfusion:Gridlines>
                </syncfusion:SnapSettings.VerticalGridlines>
    		</syncfusion:SnapSettings>
       </syncfusion:SfDiagram.SnapSettings>
    </syncfusion:SfDiagram>

    Grid line intervals

    Snapping

    Snap To Lines

    This feature allows the Diagram objects to snap to the nearest interaction of gridlines while being dragged or resized. This feature enables easier alignment during layout or design.

    Snapping to gridlines can be enabled/disabled with the SnapConstraints property of SnapSettings. The following code example illustrates how to enable/disable the snapping to gridlines.

  • C#
  • //Enables snapping to both the horizontal and vertical lines.
    diagram.SnapSettings.SnapConstraints = SnapConstraints.SnapToLines;

    To enable/disable snapping to horizontal/vertical lines, refer to SnapConstraints.

    Snap To Objects

    The snap-to-object provides visual cues to assist with aligning and spacing Diagram. A Node can be snapped with its neighboring objects based on certain alignments. Such alignments are visually represented as smart guides.

    diagramControl.SnapSettings.SnapToObject determines whether Nodes can be snapped to objects.

    Snapping to objects can be enabled by assigning values other than SnapToObject.None to SfDiagram.SnapSettings.SnapToObject.

    The following code illustrates how to enable/disable the smart guide.

  • C#
  • //Enables or disables the default behaviors of the Snapping in SfDiagram.
    diagram.SnapSettings.SnapConstraints = SnapConstraints.All;
    
    //Disables the default behaviors snapping Nodes/Connectors to objects.
    diagram.SnapSettings.SnapToObject = SnapToObject.None;