Radzen Accordion Icon

Hi,
I would like to know if it's possible to change the color of a RadzenAccordionItem Icon.

Regards,

Hi @Pascal_Felix,

This is not possible out of the box, but you can:

  1. Set a Class to your item
<RadzenAccordionItem Class="my-icon" Text="Orders" Icon="account_balance_wallet">
    ...
</RadzenAccordionItem>
  1. Add the following style
<style>
    .my-icon i {
        color: red;
    }
</style>

Enjoy!

Hi,
Thanks for your reply.
And i would like to know if the epand of a RadzenAccordionItem is disabled ?
In fact, i want to make conditionnal the expand of my Accordion.

Regards,

Expanding RadzenAccordionItem is unconditional - if it has children it is expandable. Otherwise it is not.

ok. Thanks for your support.