How to Customize the Position of Layout in Angular Diagram?
The Angular Diagram allows you to customize the position of layout in the diagram using alignment property. By adjusting horizontalAlignment and verticalAlignment properties, you can precisely control the positioning of layout.
Using horizontalAlignment property, layout can be positioned at Left, Right and Center in the diagram.
Using verticalAlignment property, layout can be positioned at Top, Bottom and Center in the diagram.
By default, layout renders at the top center in the diagram
Refer to the code snippet below to customize the position of layout:
//Configrues alignment property
public layout: LayoutModel = {
type: 'ComplexHierarchicalTree',
horizontalAlignment: 'Left',
verticalAlignment: 'Top'
};
You can find a working example of this implementation in the provided sample on StackBlitz.
Sample - Click here for sample
Conclusion
I hope you enjoyed about how to customize the position of layout in Angular Diagram. You can refer to our Angular Diagram feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our Angular Diagram example to understand how to create and manipulate data. For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls. If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!