Hello,
Hmmmm ... Never worked on a calendar, so I want to design a calendar in a personal project (instead of using for example fullcalendar).
I want to have differents views : day, week, month, year, planning (like in the Google calendar).
To display a month, it's quite easy with a CSS grid with 7 columns where I put all days of the month.
But to display a week, I need to display hours on the left. At first view it can seem quite easy, but not (or I didn't have the great idea ;)).
Is it better to display the hours line per line, this means 8:00 for monday, 8:00 for tuesday, ... or is it better to display each hour day by day like monday 8:00, 9:00, ... ?
Knowing that next it's necessary to display events sometimes overlapping several hours.
Thanks for your help.
V