formats Array (default: ["hex", "rgb"])

Sets the available input formats in the gradient input editor. Only "hex" and "rgb" are valid values.

Example

<input id="colorpicker" type="color" />
<script>
$("#colorpicker").kendoColorPicker({
  format: "rgb",
  formats: ["rgb"]
});
</script>
In this article