import { ChildProperty } from '@syncfusion/ej2-base'; /** * Represents the diagram settings * ```html *
* ``` * ```typescript * let diagram: Diagram = new Diagram({ * ... * diagramSettings: { inversedAlignment: true }, * ... * }); * diagram.appendTo('#diagram'); * ``` * * @default {} */ export declare class DiagramSettings extends ChildProperty { /** * Defines the horizontal and vertical orientation behavior of nodes, ports, annotations, and more. * * @default true */ inversedAlignment: boolean; }