curveTo
Draws a cubic Bézier curve (with two control points).
A quadratic Bézier curve (with one control point) can be plotted by making the control point equal.
Example - Draw a curved path
<div id="surface" style="width: 250px; height: 250px;"></div>
<script>
var draw = kendo.drawing;
var path = new draw.Path()
.moveTo(100, 200)
.curveTo([100, 100], [250, 100], [250, 200])
.lineTo(100, 200);
var surface = draw.Surface.create($("#surface"));
surface.draw(path);
</script>