Customise predefined colours in RadzenColorPicker

Hi,

Is it possible to customise the predefined colours in RadzenColorPicker?

Hi @hannah,

Yes you can! You can define additional colors via the Items property of the ColorPicker. Or like this in code

<RadzenColorPicker>
    <RadzenColorPickerItem Value="ff2800" />
    <RadzenColorPickerItem Value="fe9300" />
    <RadzenColorPickerItem Value="fefb00" />
</RadzenColorPicker>

Excellent, thank you!