Hide control buttons in Blazor Color Picker Component
28 Dec 20231 minute to read
Color Picker can be rendered without control buttons (Apply/Cancel). In this case, while selecting a color, the Color Picker pop-up is closed and selected color can be applied directly. To hide control buttons, set the ShowButtons property to false
.
@using Syncfusion.Blazor.Inputs
<h4>Choose a color</h4>
<SfColorPicker ShowButtons="false"></SfColorPicker>