<divid="surface"></div><script>var draw = kendo.drawing;var geom = kendo.geometry;var circleGeometry =newgeom.Circle([100,100],30);var circle =newdraw.Circle(circleGeometry).stroke("black",2);var surface = draw.Surface.create($("#surface"));
surface.draw(circle);// Set fill color and opacity using the fill method
circle.fill("teal",0.6);// Chain multiple operationssetTimeout(()=>{
circle.fill("gold",0.8).stroke("darkgoldenrod",3);},2000);</script>