alignOffset Object (default: { x: 16, y: 16 })

    Specifies the horizontal and vertical offset of the FloatingActionButton.

    Example

    Open In Dojo
    <button id="fab-top-start">Top Start</button>
    
    <script>
        $('#fab-top-start').kendoFloatingActionButton({
            align: 'top start',
            alignOffset: { x: 50, y: 50 }
        });
    </script>
    In this article