I have a test index.html file that uses the following successfully:
When I try to recode this in Typescript, kendo.dataviz.diagram.Path is undefined/undeclared. I see no evidence of it in kendo.all.d.ts.
This code is trying to build a group by assembling a rectangle, or a shape like the above, and some text, rather than adding shapes directly to the diagram.
Using 2014.2.1008.commercial. I'll look at 2014.3.1119 but I see no reference to this in the release notes.
var path = "M10 0 L90 0 L100 25 L90 50 L10 50 L0 25 Z";var block = new kendo.dataviz.diagram.Path({ width: dataItem.width, height: dataItem.height, fill: { color: 'green' }, data: path });When I try to recode this in Typescript, kendo.dataviz.diagram.Path is undefined/undeclared. I see no evidence of it in kendo.all.d.ts.
This code is trying to build a group by assembling a rectangle, or a shape like the above, and some text, rather than adding shapes directly to the diagram.
Using 2014.2.1008.commercial. I'll look at 2014.3.1119 but I see no reference to this in the release notes.