Hello everybody,
i use the telerik RadScheduler and the Timeline-View.
I will export the current view to PDF. The HTML-View shows all correct.
In the PDF the inline row of the timeline is smaller then the vertical headers. (Take a look to the Attachment)
The html and pdf have the same css files.
My C# code:
My aspx:
What can I do? Is this a problem with the PDF-Exporter?
Best regards
Tobias
i use the telerik RadScheduler and the Timeline-View.
I will export the current view to PDF. The HTML-View shows all correct.
In the PDF the inline row of the timeline is smaller then the vertical headers. (Take a look to the Attachment)
The html and pdf have the same css files.
My C# code:
RadScheduler1.ExportSettings.Pdf.PaperSize = SchedulerPaperSize.A4;
RadScheduler1.ExportSettings.Pdf.PaperOrientation = SchedulerPaperOrientation.Landscape;
RadScheduler1.ExportSettings.Pdf.PageTopMargin = Unit.Parse(
"10mm"
);
RadScheduler1.ExportSettings.Pdf.PageBottomMargin = Unit.Parse(
"10mm"
);
RadScheduler1.ExportSettings.Pdf.PageLeftMargin = Unit.Parse(
"10mm"
);
RadScheduler1.ExportSettings.Pdf.PageRightMargin = Unit.Parse(
"10mm"
);
RadScheduler1.ExportSettings.Pdf.AllowPaging =
true
;
RadScheduler1.RowHeaderWidth = Unit.Parse(
"45mm"
);
RadScheduler1.Width = Unit.Parse(
"200mm"
);
SqlDSEmployee.SelectCommand = sql();
SqlDSEmployee.DataBind();
RadScheduler1.ExportToPdf();
My aspx:
<
ExportSettings
OpenInNewWindow
=
"True"
>
<
Pdf
PageTopMargin
=
"10mm"
PageBottomMargin
=
"10mm"
PageLeftMargin
=
"10mm"
PageRightMargin
=
"10mm"
PaperSize
=
"A4"
StyleSheets
=
"Content/StylePDF.css"
>
</
Pdf
>
</
ExportSettings
>
What can I do? Is this a problem with the PDF-Exporter?
Best regards
Tobias