New to Kendo UI for jQueryStart a free 30-day trial

Height

fields

The height of the Tooltip.

height

Number|String
<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>
Not finding the help you need?
Contact Support