tileSize Number|Object
(default: 14)
The size of a color cell.
Example
<input id="colorpicker" type="color" />
<script>
$("#colorpicker").kendoColorPicker({
palette: "basic",
tileSize: 32
});
</script>
tileSize.width Number
(default: 14)
The width of the color cell.
Example
<input id="colorpicker" type="color" />
<script>
$("#colorpicker").kendoColorPicker({
palette: "basic",
tileSize: { width: 40 }
});
</script>
tileSize.height Number
(default: 14)
The height of the color cell.
Example
<input id="colorpicker" type="color" />
<script>
$("#colorpicker").kendoColorPicker({
palette: "basic",
tileSize: { height: 40 }
});
</script>