How to hide bold text on event full calendar v5

This is how i add events to full calendar using source.

let events = []; for(let j=0;j<100;j++) {      let e = {          title: "test",          start: new Date("2020-07-14T19:00"),          end: new Date("2020-07-14T20:00"),          display: "block",          id: j     }      events.push(e); }  calendar.addEventSource(events); calendar.render(); 

And this gives me this result: enter image description here I dont want those bold numbers, how can i delete them?

Add Comment
0 Answer(s)

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.