How to get color of the event in calendar?

I have below html code:
<mbsc-eventcalendar
[dragToMove]=“true”
id=“calendar”
[data]=“events$ | async”
[view]=“calendarView$ | async”
(onEventClick)=“onCalendarEventClick($event)”
(onCellClick)=“onCalendarDateClick($event)”
(onEventUpdated)=“onEventDragged($event)”

In the [data] I have events$ where I have ‘color’ set for an event. But the event is getting highlighted with some default color and not highlighting the hex code of that event.

Hi there,

The colors should apply as you described based on the color property defined in the objects of the data array.

I’ve just tested the Eventcalendar but for me the event colors where updating properly without any issue.

Could you please share a working example or a live link where I can examine this issue?