Fullcalendar's events is configured to show nothing.

I just wanted to display a line of text in the cell, but I didn"t show

$("- sharpcalendar"). FullCalendar ({

)
  header: {
            left: "prev,next",
            center: "title",
    right: "none",
        },
  views: {
    month: {
     titleFormat: "YYYYMM"
    }
  },
  events: [
    {
        title: "Event1",
        start: "2011-04-04"
    },
    {
        title: "Event2",
        start: "2011-05-05"
    }
  ],
  height: 500,
  monthNames: ["", "", "", "", "", "", "", "", "", "", "", ""],
  monthNamesShort: ["", "", "", "", "", "", "", "", "", "", "", ""],
  dayNames: ["", "", "", "", "", "", ""],
  dayNamesShort: ["", "", "", "", "", "", ""],
});
Mar.22,2021
Menu