New to Kendo UI for Angular? Start a free 30-day trial
ConvertResult
Updated on Oct 31, 2025
Result object returned by the diagram data conversion process.
Contains the converted shapes and connections arrays that are ready to be used for diagram rendering. Each array contains properly formatted options objects that conform to the diagram component's expected data structure.
typescript
const result: ConvertResult = {
shapes: [
{ id: '1', x: 100, y: 100, content: { text: 'Node 1' } },
{ id: '2', x: 200, y: 100, content: { text: 'Node 2' } }
],
connections: [
{ from: '1', to: '2' }
]
};
| Name | Type | Default | Description |
|---|---|---|---|
connections |
| ||
shapes |
|