opacity Boolean (default: false)

Only for the HSV selector. If true, the widget will display the opacity slider. Note that currently in HTML5 the <input type="color"> does not support opacity.

Example

<input id="colorpicker" type="color" />
<script>
$("#colorpicker").kendoColorPicker({
  opacity: true
});
</script>
In this article