quasarframework / quasar-ui-qcalendar

QCalendar - Quasar App Extension, Vue CLI plug-in and UMD distributions available
https://quasarframework.github.io/quasar-ui-qcalendar
MIT License
433 stars 119 forks source link

Month view multiple day range #410

Closed tlloydukdev closed 1 year ago

tlloydukdev commented 1 year ago

Hi there,

On month view, If I have an event that spans multiple days is it possible to show a solid bar from start to end rather than individual blocks, e.g.

This seems to be the default from the demos: image

But I'm trying to achieve: image

events: [ { title: 'Two day event', date: getCurrentDay(2), time: '00:00', days: 1, bgcolor: 'orange' } ], Thanks Tim

Bruno17 commented 1 year ago

look into the month-slot-week example https://qcalendar.netlify.app/examples/month-slot-week

tlloydukdev commented 1 year ago

ahh much appreciated Bruno