New to Telerik UI for BlazorStart a free 30-day trial

ChipList Appearance Settings

Updated on Aug 31, 2026

You can control the appearance of the chips in the ChipList by setting the following parameters:

You can use all of them together to achieve the desired appearance. This article will explain their effect one by one.

Also see how to set ThemeColor and FillMode separately for each chip in the ChipList.

FillMode

The FillMode controls how all the chips are filled. You can set it to a member of the Telerik.Blazor.ThemeConstants.Chip.FillMode class:

Class membersManual declarations
Solid
default value
solid
Outlineoutline

You can also set FillMode separately for each chip in the ChipList through a property of the data item.

Using ChipList FillMode

Example
View Source
Loading ...

Rounded

The Rounded parameter applies the border-radius CSS rule to the chip to achieve curving of the edges. You can set it to a member of the Telerik.Blazor.ThemeConstants.Chip.Rounded class:

Class membersManual declarations
Smallsm
Medium
default value
md
Largelg
Fullfull

Using ChipList Rounded

Example
View Source
Loading ...

Size

You can increase or decrease the size of the chips by setting the Size parameter to a member of the Telerik.Blazor.ThemeConstants.Chip.Size class:

Class membersManual declarations
Smallsm
Medium
default value
md
Largelg

Using ChipList Size

Example
View Source
Loading ...

ThemeBuilder

To take full control over the appearance of the Telerik UI for Blazor components, you can create your own styles by using ThemeBuilder.

ThemeBuilder is a web application that enables you to create new themes and customize existing ones. Every change that you make is visualized almost instantly. Once you are done styling the UI components, you can export a ZIP file with the styles for your theme and use them in your Blazor app.

See Also