Why does Bounds() always return 1 pixel more than the actual width and height?
Check out: http://dojo.telerik.com/@Harold@/Ivacu
var shape = new kendo.dataviz.diagram.Shape({ type: "rectangle", x: 0, y: 0, width: 1150, height: 1150, fill: "blue" });
alert("bounds().width = " + shape.bounds().width);
Result:
bounds().width = 1151