Render palette alone in Color Picker Control
19 Dec 20221 minute to read
To render the Palette
alone in ColorPicker, specify the mode property as Palette
, and set the modeSwitcher property to false
.
In the following sample, the showButtons property is disabled to hide the control buttons and it renders only the Palette
area.
<div class='wrap'>
<h4>Choose Color</h4>
<ejs-colorpicker id="element" mode="Palette" modeSwitcher="false" showButtons="false"></ejs-colorpicker>
</div>
<style>
.wrap {
margin: 0 auto;
width: 300px;
text-align: center;
}
</style>
NOTE
To render
Picker
alone specify the mode property as ‘Picker’.
NOTE