Hi support:
Today I upgraded the Xamarin UI from R3 2016 to the R2 2017. The problem is that under Android I cant find a way to change the ShapeSize nor ShapeType of the appointment indicator of the Month view. In the past I could display a rectangle as
this.calendar.AppointmentsStyle.ShapeSize = new Size(5, 1);
To show a line in the calendarcell to be able to show many appointments, but now the cell can only hold two rectangles, so its like is ignoring my properties values.
I tried to change the Shape Type without luck like this:
this.calendar.AppointmentsStyle = new CalendarAppointmentsStyle
{
DisplayMode = AppointmentDisplayMode.Shape,
Padding = new Thickness(5, 5, 5, 5),
MaxCount = 20,
Spacing = 1,
ShapeType = CalendarAppointmentShapeType.Ellipse,
};
What could I be missing here.
Thanks
David