antoniandre / vue-cal

A Vue.js full calendar, no dependency, no BS. :metal:
https://antoniandre.github.io/vue-cal/
MIT License
1.24k stars 238 forks source link

How can I display short events? They are not readable (height too small) #537

Closed DNA-PC closed 1 year ago

DNA-PC commented 1 year ago
image

Is there a way to make the event more readable anyhow? Because the time is too short (e.g: 5mn), it's not readable at all.

I was thinking there could be something that makes the event bigger when focused, I'm open to other ideas/workarounds.

lehoaibaokg commented 1 year ago

You can set the time step = 15 mins which means we have 4 time slots / hour. And the minimum event height will be a time slot if it's only 5 minutes. image Besides, you can implement event tooltips to display event information like event time and more.

DNA-PC commented 1 year ago

Thanks, it's useful.