This question is locked. New answers and comments are not allowed.
Hello
I am trying to decorate an specific CalendarCell with a decorator, I have only achieve this using the click/tab event, but what I want is to decorate specif days of the month with the decorator, not only the ones selected/clicked. I've been using this decorator:
CellDecorator decorator = new CircularCellDecorator(calendarView);decorator.Color = (Android.Graphics.Color.ParseColor("#ed742c"));decorator.StrokeWidth = 3;decorator.Scale = .75f;Also can I fill the circle with the color ?
I know that there is a function called:
calendarView.CellDecorator.ToggleDecorationForCell();But I need to pass a CalendarCell which is an Abstract Class, not sure how to achieve this.