alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Enum RelativeMode

    Specifies the relative mode.

    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public enum RelativeMode
    Examples
    <SfDiagramComponent  />
     @code
     {
        protected override void OnInitialized()
        {
         DiagramCanvas canvas = new DiagramCanvas();
           canvas.RelativeMode = RelativeMode.Object;
          canvas.Children = new DiagramObjectCollection<CommonElement>() { child1};
          basicElements.Add(canvas);
        }
    }

    Fields

    Name Description
    Object

    Object - Diagram elements will be aligned with respect to its immediate parent

    Point

    DiagramPoint - Diagram elements will be aligned with respect to a point

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved