RadzenDropDown 's TextProperty

I wonder if there is a way to display html raw of the TextProperty in RadzenDropDown. For example
<RadzenDropDown Placeholder="Select..." FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" AllowFiltering="true" AllowClear="true" PageSize="20"
Data=@(AllChmfam.Select(c => new { c.ChemFam, c.ChmFamNo }).Distinct().OrderBy(o=>o.ChemFam)) TextProperty="ChemFam" ValueProperty="ChmFamNo"
/> ChemFam has html format (Si-C:Al2O3). I want to display the html format in the dropdown. I tried to use TextProperty="@((MarkupString)ChemFam)". It did not work.

You can use Template property for this.