text
Sets / gets the text of the FloatingActionButton.
Parameters
text String
The new text of the FloatingActionButton.
Example
<button id="fab"></button>
<script>
var fab = $('#fab').kendoFloatingActionButton({
text: 'Actions'
}).getKendoFloatingActionButton();
fab.text('Print');
</script>