Syncfusion AI Assistant

How can I help you?

Toolbar Customization in React Grid Component

14 Feb 20261 minute to read

The appearance of the toolbar in the Syncfusion® React Grid component can be customized using CSS. Here are examples for customizing the toolbar root element and toolbar button element.

Customizing the toolbar root element

The .e-toolbar-items class is used to style the toolbar root element.

.e-grid .e-toolbar-items {
    background-color: #deecf9;
}

Grid toolbar root element

Customizing the toolbar button element

The .e-toolbar .e-btn selector is used to style the toolbar button elements.

.e-grid .e-toolbar .e-btn {
    background-color: #deecf9;
}

Grid toolbar button element