New to Kendo UI for jQuery? Start a free 30-day trial
kendo.drawing.Text : kendo.drawing.Element
Draws a single line of text at the given position.
Example - creating a text
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var geom = kendo.geometry;
var position = new geom.Point(10, 10);
var text = new draw.Text("Foo", position);
var surface = draw.Surface.create($("#surface"));
surface.draw(text);
</script>
Constructor Parameters
Configuration
Methods
In this article