Hi,
I would like to know if it's possible to change the color of a RadzenAccordionItem Icon.
Regards,
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:
<RadzenAccordionItem Class="my-icon" Text="Orders" Icon="account_balance_wallet">
...
</RadzenAccordionItem>
<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.