<divid="surface"style="width:250px;height:250px;"></div><script>var draw = kendo.drawing;var multiPath =newdraw.MultiPath().moveTo(50,50).lineTo(150,50).lineTo(100,100).close().moveTo(100,150).lineTo(200,150).lineTo(150,200).close();// Set fill color and opacity
multiPath.fill("red",0.7);var surface = draw.Surface.create($("#surface"));
surface.draw(multiPath);</script>