heightNumber|String
The height 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: "purple" },
tooltip: {
content: "Custom height tooltip with more content to demonstrate the height setting",
height: 80
}
});
path.moveTo(20, 20).lineTo(80, 20).lineTo(50, 60).close();
surface.draw(path);
</script>
In this article