PdfRpt.FluentInterface.ColumnItemsTemplateBuilder.MonthCalendar C# (CSharp) Method

MonthCalendar() public method

Displaying current cell's data as a MonthCalendar. Calendar's cell data type should be CalendarData. Use DaysInfoToCalendarData.MapToCalendarDataList to map list of the DayInfo's to the list of CalendarData's.
public MonthCalendar ( CalendarAttributes data ) : void
data CalendarAttributes MonthCalendarField's data.
return void
        public void MonthCalendar(CalendarAttributes data)
        {
            _columnItemsTemplate = new MonthCalendarField
            {
                MonthCalendarFieldData = data
            };
        }