badge.shapeString
(default: 'rounded')
Specifies the shape of the badge. Valid options are: rectangle
, rounded
, pill
, circle
, dot
.
Example
<button id="button">Button</button>
<script>
$("#button").kendoButton({
badge: {
text: "7",
shape: "circle"
}
});
</script>
In this article