@syncfusion/ej2-diagrams
Version:
Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts.
20 lines (16 loc) • 324 B
TypeScript
import { Property, ChildProperty } from '@syncfusion/ej2-base';
/**
* Interface for a class Point
*/
export interface PointModel {
/**
* Sets the x-coordinate of a position
* @default 0
*/
x?: number;
/**
* Sets the y-coordinate of a position
* @default 0
*/
y?: number;
}