I found an example using an older code base of kendo that allows for HTML content inside of a diagram but seems to have been removed under current release (see link below). Is there a way to add HTML content to a diagram?
https://jsfiddle.net/Orbifold/mfcar358/
Second question I have is how to do a newline character inside content to split text on two rows? I tried \r\n, etc. but nothing works.
var diagram = $('#diagram') .kendoDiagram({ shapes: [{ width: 150, height: 100, content:{ text:"I want to split this\r\n into two rows", align: "center middle" } }] }) .getKendoDiagram();