create
Creates a drawing surface matching the browser capabilities.
Example - Specifying a preferred type and size
<div id="container"></div>
<script>
var draw = kendo.drawing;
var surface = draw.Surface.create($("#container"), {
type: "canvas",
width: "600px",
height: "400px"
});
var path = new draw.Path().fill("red")
.moveTo(50, 0).lineTo(100, 50).lineTo(0, 50).close();
surface.draw(path);
</script>