position String
(default: "bottom")
The position that is relative to the target element at which the Popover will be shown.
The supported values are:
bottom
top
left
right
center
Example - setting the position of the Popover
<span id="target">
Some content
</span>
<script>
$(document).ready(function() {
$("#target").kendoPopover({
template: "Content description",
position: "right"
});
});
</script>