Hi, I am trying to export the scheduler to pdf using the exportToPdf method, and on long schedules with paging enabled returns black images after the first page, where the schedule image should be. Does anyone know the cause and solution to this?
The code for when the export occurs looks like this:
var schedulerPdfSettings = RadScheduler1.ExportSettings.Pdf;
schedulerPdfSettings.PageTitle = "some title";
schedulerPdfSettings.PaperOrientation = ScheduleSessionManager.IsTimelineView ? SchedulerPaperOrientation.Landscape : SchedulerPaperOrientation.Portrait;
schedulerPdfSettings.AllowPaging =
true
;
RadScheduler1.ExportSettings.OpenInNewWindow =
true
;
string
[] styleSheets = {
"../../Content/css/scheduleExport.css"
};
schedulerPdfSettings.StyleSheets = styleSheets;
RadScheduler1.ExportToPdf();