stacking String
(default: "default")
Determines the direction in which multiple notification will stack (arrange) with regard to the first one. Possible values are "up"
, "right"
, "down"
, "left"
and "default"
.
The "default"
setting takes into consideration the applied position
settings and is evaluated to "up"
or "down"
.
Example - set downward stacking
<span id="notification"></span>
<script>
$("#notification").kendoNotification({
position: {
top: 20,
right: 20
},
stacking: "down"
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>