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