In the FullCalender I am using the event name is in bold. You can see it in the below image
But I want the event name to be normal and not bold but start-end times should still be bold. Is there a solution for it ? The below is my code
<FullCalendar
header={{
left: 'prev,next today myCustomButton',
center: 'title',
right: 'month,listWeek'
}}
views={{
listWeek: { buttonText: 'Week' },
month: { buttonText: 'Month' }
}}
timeFormat= 'H:mm'
plugins={['interaction']}
selectable={true}
fixedWeekCount={false}
defaultView={this.state.calendarView}
navLinks={true} // can click day/week names to navigate views
navLinkDayClick={this.dayClick}
editable={false}
eventLimit={2} // allow "more" link when too many events
eventClick={this.calendarClick}
events={aclCheck("EventView") && this.props.events && this.props.events.rows ? this.state.events : []}
viewRender={(view, element) => {
if (view.type !== this.state.calendarView)
this.setState({ calendarView: view.type })
}}
showNonCurrentDates={false}
dateClick={(info) => {
alert('clicked ' + info);
}}
select={(info, info1) => {
this.selectedDate = {start: info, end: info1}
}}
unselectCancel="button"
unselect={() => this.props.selectCalendarDates(undefined)}
/>