| name | String | Sets the name of the component. |
| as-module | Boolean | Specifies whether the initialization script of the component will be rendered as a JavaScript module. |
| is-in-client-template | Boolean | When placing a Tag Helper within a Kendo Template, set the type to text/html and add the is-in-client-template="true" attribute. |
| auto-bind | Boolean | If set to false the widget will not bind to the data source during initialization. In this case data binding will occur when the change event of the data source is fired. By default the widget will bind to the data source specified in the configuration. |
| deferred | Boolean | Suppress initialization script rendering. Note that this options should be used in conjunction with DeferredScripts method. |
| datasource-id | String | The data source id |
| on-add | String | Fired when the user adds new shape or connection.The event handler function context (available via the this keyword) will be set to the widget instance. |
| on-cancel | String | Fired when the user clicks the "cancel" button in the popup window in case the item was added via a toolbar. |
| on-change | String | Fired when an item is added or removed to/from the diagram. |
| on-click | String | Fired when the user clicks on a shape or a connection. |
| on-data-bound | String | Fired when the widget is bound to data from dataDource and connectionsDataSource.The event handler function context (available via the this keyword) will be set to the widget instance. |
| on-drag | String | Fired when dragging shapes or connection. |
| on-drag-end | String | Fired after finishing dragging shapes or connection. |
| on-drag-start | String | Fired before starting dragging shapes or connection. |
| on-edit | String | Fired when the user edits a shape or connection. |
| on-item-bounds-change | String | Fired when the location or size of a shape are changed. |
| on-item-rotate | String | Fired when a shape is rotated. |
| on-mouse-enter | String | Fired when the mouse enters a shape or a connection.Will not fire for disabled items. |
| on-mouse-leave | String | Fired when the mouse leaves a shape or a connection.Will not fire for disabled items. |
| on-pan | String | Fired when the user pans the diagram. |
| on-remove | String | Fired when the user removes a shape or connection. |
| on-save | String | Fired when the user saves a shape or a connection. |
| on-select | String | Fired when the user selects one or more items. |
| on-tool-bar-click | String | Fired when the user clicks an item in the toolbar. |
| on-zoom-end | String | Fired when the user changes the diagram zoom level. |
| on-zoom-start | String | Fired when the user starts changing the diagram zoom level. |
| script-attributes | IDictionary<String,Object> | Sets the attributes that will be added to the script tag of the component's initialization script. |
| tab-index | Double | The tabIndex value to set on the diagram element. |
| template | String | Represents a collection of templates defined for the component. |
| template-handler | String | The template which renders the content of the shape when bound to a dataSource. The names you can use in the template correspond to the properties used in the dataSource. For an example, refer to the dataSource topic below. This option expects the name of a JavaScript function that will be called to return the template. |
| template-id | String | The template which renders the content of the shape when bound to a dataSource. The names you can use in the template correspond to the properties used in the dataSource. For an example, refer to the dataSource topic below. This option expects the ID of the script element that contains the template. |
| template-view | IHtmlContent | The template which renders the content of the shape when bound to a dataSource. The names you can use in the template correspond to the properties used in the dataSource. For an example, refer to the dataSource topic below. This option expects the instance containing the created HTML. |
| theme | String | |
| zoom | Double | The default zoom level of the Diagram in percentages. |
| zoom-max | Double | The maximum zoom level in percentages. The user will not be allowed to zoom in past this level. |
| zoom-min | Double | The minimum zoom level in percentages. The user will not be allowed to zoom out past this level. You can see an example in zoomMax. |
| zoom-rate | Double | The zoom step when using the mouse-wheel to zoom in or out. |