size String(default: "medium")

Sets a value controlling size of the component. Can also be set to the following string values:

  • "small"
  • "medium"
  • "large"
  • "none"

Example

Open In Dojo
<div id="ColorGradient"></div>
<script>
$("#ColorGradient").kendoColorGradient({
  size: "small"
});
</script>
In this article