Hi,
I can't figure out how to rotate a rectangle in my visualTemplate. If I add a rectangle like this to the Group that contains the elements in the template, how do I rotate the rectangle?
var
r =
new
kendo.dataviz.diagram.Rectangle({
width: 60,
height: 60,
fill:
'white'
,
stroke: { color:
'black'
, width: 2 }
});
g.append(r);
Thanks :-)