strokekendo.drawing.StrokeOptions

The stroke options of the shape.

Example

<div id="surface"></div> <script> var draw = kendo.drawing; var geom = kendo.geometry; var arcGeometry = new geom.Arc([100, 100], { radiusX: 30, radiusY: 40, startAngle: 90, endAngle: 270 }); var arc = new draw.Arc(arcGeometry, { stroke: { color: "darkblue", width: 4, opacity: 0.8, dashType: "dash" } }); var surface = draw.Surface.create($("#surface")); surface.draw(arc); </script>
In this article
stroke
Not finding the help you need?
Contact Support