How to render palette in ASP.NET CORE Color Picker

17 Aug 20261 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

View Sample in GitHub.