optionsObject
The configuration of this Group.
Example
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var group = new draw.Group({
opacity: 0.8,
visible: true,
transform: kendo.geometry.transform().translate(50, 50)
});
var pathA = new draw.Path().moveTo(0, 0).lineTo(100, 100);
var pathB = new draw.Path().moveTo(0, 100).lineTo(100, 0);
group.append(pathA, pathB);
var surface = draw.Surface.create($("#surface"));
surface.draw(group);
</script>
In this article