Планировщик экспорта изображений DayPilot

Я пытаюсь экспортировать DayPilot Scheduler, используя этот код

DayPilotScheduler1.DataSource = dbGetEvents(DayPilotScheduler1.StartDate, DayPilotScheduler1.Days);//OPens only two Rows

DayPilotScheduler1.DataBind();

DayPilotScheduler1.CssOnly = false;

Response.Clear();

Response.ContentType = "image/png";

Response.AddHeader("content-disposition", "attachment;filename=print.png");

DayPilotScheduler1.DataBind();

MemoryStream img = DayPilotScheduler1.Export(ImageFormat.Png);

img.WriteTo(Response.OutputStream);

DayPilotScheduler1.CssOnly = true;

Response.End();

и даты в экспортированном файле не охватывают весь период от DayPilotScheduler1.StartDate до

DayPilotScheduler1.EndDate, но только даты, которые я вижу на экране, например, экран печати. Что можешь

вызвать эту проблему?

1 ответ

Сделай это:

DayPilotScheduler1.Width = Unit.Percentage(100);
Другие вопросы по тегам