Change color of react-big-calendar events
Sorry, I haven’t read the documentation really well. It can be done with the help of eventPropGetter attribute. I’ve made it like this: eventStyleGetter: function(event, start, end, isSelected) { console.log(event); var backgroundColor=”#” + event.hexColor; var style = { backgroundColor: backgroundColor, borderRadius: ‘0px’, opacity: 0.8, color: ‘black’, border: ‘0px’, display: ‘block’ }; return { style: style … Read more