alignOffset.xNumber|String
Specifies the initial horizontal 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: 'top start',
alignOffset: {
x: 100,
y: 50
}
});
</script>
In this article