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

Stroke

configuration

The stroke options of the shape.

stroke

kendo.drawing.StrokeOptions
<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>
Not finding the help you need?
Contact Support