agendaViewHeight property

double agendaViewHeight
final

The height for agenda view to layout within this in SfCalendar month view.

Defaults to -1.

month agenda view height as 400

See also:

Widget build(BuildContext context) {
   return Container(
     child: SfCalendar(
       view: CalendarView.month,
       monthViewSettings: MonthViewSettings(
          dayFormat: 'EEE',
          numberOfWeeksInView: 4,
          appointmentDisplayCount: 2,
          appointmentDisplayMode: MonthAppointmentDisplayMode.appointment,
          showAgenda: true,
          agendaViewHeight: 120,
          navigationDirection: MonthNavigationDirection.horizontal),
     ),
   );
 }

Implementation

final double agendaViewHeight;