widthNumber|String
The width of the Tooltip.
Example
<div id="surface"></div>
<script>
var draw = kendo.drawing;
var surface = draw.Surface.create($("#surface"));
var path = new draw.Path({
fill: { color: "pink" },
tooltip: {
content: "This tooltip has a custom width setting to demonstrate how the width property works",
width: 200
}
});
path.moveTo(40, 40).lineTo(90, 40).lineTo(65, 80).close();
surface.draw(path);
</script>
In this article