<divid="surface"></div><script>var draw = kendo.drawing;var geom = kendo.geometry;var circleGeometry =newgeom.Circle([100,100],30);var circle =newdraw.Circle(circleGeometry).fill("lightcoral");var surface = draw.Surface.create($("#surface"));
surface.draw(circle);// Set stroke properties using the stroke method
circle.stroke("darkred",4,0.8);// Chain stroke with other methodssetTimeout(()=>{
circle.stroke("blue",2).fill("lightblue",0.6);},2000);</script>