This question is locked. New answers and comments are not allowed.
Hello,
I'm using Angular2 (Typescript). I implemented RadCalendar as follow:
<RadCalendar row="0" [eventSource]="events" (dateSelected)="onDateSelected($event)"></RadCalendar>
private events: CalendarEvent[]; ngOnInit() { this.calendarService.getCalendarEvents({ ... }, (data)=>{ this.events = data.events; }); }
This works well on Android instead on iOS the events are not shown on days. How can it works on iOS too?
Thanks