height Number|String
(default: null)
Defines the notifications' height. Numbers are treated as pixels.
Example - set height as a number
<span id="notification"></span>
<script>
$("#notification").kendoNotification({
height: 50
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>
Example - set height as a string
<span id="notification"></span>
<script>
$("#notification").kendoNotification({
height: "4em"
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>