fillMode String (default: 'solid')

Controls how the color is applied to the button. Valid values are: "solid", "outline", "flat", "link", and "none". Default value is "solid".

Example

<button id="button" type="button">Cancel</button>
<script>
    $("#button").kendoButton({
        fillMode: "outline"
    });
</script>
In this article