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 circleGeometry = new geom.Circle([100, 100], 30);
    var circle = new draw.Circle(circleGeometry, {
        stroke: {
            color: "blue",
            width: 4,
            opacity: 0.8,
            dashType: "dash"
        },
        fill: { color: "lightblue" }
    });

    var surface = draw.Surface.create($("#surface"));
    surface.draw(circle);
</script>
Not finding the help you need?
Contact Support