Two framework timetable

Started by TAHIR, May 28, 2024, 02:37:29 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

TAHIR

A timetable have two framework. In one frame work duration of lecture is 45 min and other framework duration of lecture is 40 min with break time 20 min.
How can we adjust this timetable except 5 min fet hour trick.

TAHIR


Volker Dirr


TAHIR

Thank you
But in 5 min fet hour Length of timetable become too long. Then to print all fet hours in single page font size reduced too much .

Volker Dirr

On paper you are right.
You might sent it by mail. On screen it is not too bad.

hmm... We might hide the hour names at all.
or we might print the hour names only if the start and end time is used.
So in worst case all times. In best case around 4*hours per day.
It is a bit complicated to print only the needed start and end times, but
I think it is possible to code it. Sadly not very easy and it must be coded for a lot of timetables. So sadly a longer coding task.

maybe a good item for the TODO list.

TAHIR

Ok thank you . I got one clue from your ans . 😊

TAHIR

#6
How we hide hours name between start and end time?

Volker Dirr

Depending on if the hours are on the x-axis or the y-axis.
Open the .css-file from the results folder and search for this:
th.xAxis {

}

th.yAxis {

}

Then add the hide command for example like this (if hours are on the y-axis):
th.xAxis {

}

th.yAxis {
  display: none;
}

TAHIR


Liviu Lalescu