optionsObject
The configuration options.
Example
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var geom = kendo.geometry;
var arcGeometry = new geom.Arc([100, 100], {
radiusX: 25,
radiusY: 25,
startAngle: 45,
endAngle: 225
});
var arc = new draw.Arc(arcGeometry, {
fill: { color: "blue" },
stroke: { color: "red", width: 2 },
opacity: 0.8
});
var surface = draw.Surface.create($("#surface"));
surface.draw(arc);
</script>
In this article