alignOffset.yNumber|String
Specifies the initial vertical offset of the FloatingActionButton. Numeric values are treated as pixels. String values can specify pixels, percentages, ems or other valid values.
Example
<div id="fab"></div>
<script>
$("#fab").kendoFloatingActionButton({
align: 'bottom end',
alignOffset: {
x: 30,
y: 80
}
});
</script>
In this article