Hi
I have a question about scheduler's pdf export style.
I am using eventTemplate to show multiple lines of additional information in one event.
And when exporting to pdf, using .k-pdf-export to increase the font size of additional information in the event.
.k-pdf-export .k-scheduler .scheduler-info
{
font-size: 1.2em !important;
}
And I added the code below to increase not only the font size, but also the height of the scheduler table and the height of each event.
.k-pdf-export div.k-event
{
height: 110px !important;
}
.k-pdf-export .k-scheduler-monthview .k-scheduler-table td
{
height: 130px !important;
}
As a result, the height size increased as desired, but the height gap between the events did not widen, resulting in an unnatural appearance (see attached file).
When exporting in pdf, how can I increase the font size, event height, table height, and the interval between events to be constant as I want?
It seems to me that I need to modify the "top" property(css style) of each event div in the scheduler.
Anyway, I would be grateful if you could tell me how to do it.