DayPilot version: DayPilot Pro for JavaScript 2026.2.6946
Other *ExportArgs types all include a `text` field, but in SchedulerBeforeEventExportArgs it’s missing.
Since this field cannot be accesed, this causes events to appear without any text on them when exporting scheduler to PDF or as a PNG.
private handler(args: SchedulerBeforeEventExportArgs) {
args.text = “something”;
}
^ Causes:
Property 'text' does not exist on type 'SchedulerBeforeEventExportArgs'
If we manage to set the text field to something, that text will be visible in the exported pdf / png.
(args as any).text = "event";