New to Kendo UI for jQueryStart a free 30-day trial

kendo.drawing.Group : kendo.drawing.Element

Represents a set of drawing elements, possibly including other groups.

Example - creating a group

Example
View Source
<div id="surface"></div>
<script>
    var draw = kendo.drawing;
    var group = new draw.Group();

    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>
Fields
fields
children
Constructor Parameters
constructor parameters
options
Configuration
configuration
clip
configuration
cursor
configuration
opacity
configuration
pdf
configuration
tooltip
configuration
transform
configuration
visible
Methods
methods
append
methods
clear
methods
clip
methods
insert
methods
opacity
methods
remove
methods
removeAt
methods
visible
Not finding the help you need?
Contact Support