fillMode String(default: "solid")

Sets a value controlling how the color is applied. Can also be set to the following string values:

  • "solid"
  • "flat"
  • "outline"
  • "none"

Example - sets the fillMode

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