Open
Description
Is there any way to have show multiple events per day, right now?
I've tried adding the same day multiple times in the event
array with different styles, but only the last event is shown:
<Calendar
weekStart={1}
scrollEnabled
showControls
showEventIndicators
eventDates={['2016-12-03', '2016-12-04', '2016-12-28', '2016-12-30']}
events={[{date: '2016-12-04', eventIndicator: {backgroundColor: 'powderblue'}}, {date: '2016-12-04', eventIndicator: {backgroundColor: 'red'}}]}
/>