Hello,
I am currently working on the Schedule control with the TimelineDay view.
I want to have the whole interval displayed on my screen without a scrollbar.
Is there a way to make the whole timeline fit on the screen, without any scrollbar?
Here is the timeline without any CSS :
And here is what i did with some CSS :
I used this piece of code to make the width of the cells smaller :
.e-schedule .e-timeline-view .e-date-header-wrap table col,
.e-schedule .e-timeline-view .e-content-wrap table col,
.e-schedule .e-timeline-month-view .e-date-header-wrap table col,
.e-schedule .e-timeline-month-view .e-content-wrap table col {
width: 1px;
}
As you can see, no matter how small i make the width, there is still a horizontal scrollbar.
Here I am displaying 3 days, but my configuration should also allow to display 1 or 5 days, without a scrollbar.
This is a bit annoying because the space to render the timeline without a scrollbar is there. It looks like the control is adapting the width of the cells automatically so that there will always be a scrollbar.
Any help is appreciated.