I have programatically added FSCalendar using swift and getting the list of events from the api call. A s default the events is displaying like dot below the event date. But I need to display the event in the circle instead of the dot below the date.I tried many ways but it did not work.Is there any way to do it?
func calendar(_ calendar: FSCalendar, numberOfEventsFor date: Date) -> Int {
return Events[date.GetFormatedDateAsString(format: "dd.MM.YYYY")] ?? 0
}