sizeString(default: undefined)
Controls the overall physical size of the ToolBar and its items. When undefined (the default), the theme controls the default size. Valid values are: \"small\", \"medium\", \"large\".
The
\"none\"value is deprecated. Use custom CSS instead.
Example
<div id="toolbar"></div>
<script>
$("#toolbar").kendoToolBar({
size: "large",
items: [
{ type: "button", text: "Button 1" },
{ type: "button", text: "Button 2" },
{ type: "button", text: "Button 3" },
{ type: "button", text: "Button 4" }
]
});
</script>