I want to to create my own export excel export and would love to be be to access all the events in the control as well as the y axis label. So I suppose this is a serialization question:
I also suppose I can correlate the two myself, but am wondering if it’s done somewhere for me.
Hello @rmoskal,
Scheduler has its own export module, that can be freely used:
https://docs.dhtmlx.com/scheduler/excel.html
Here is an example:
https://snippet.dhtmlx.com/8m81emit
It uses public export server by default, but you can use the local export module instead of it:
If you still prefer to build your own export, unfortunately there are no some public instructions, so you will have to implement it on your own.
You can get the scheduler events with the serialize
method:
https://docs.dhtmlx.com/scheduler/api__scheduler_serialize.html
In case of x/y axis - you can get it’s data with the getState
method:
https://docs.dhtmlx.com/scheduler/api__scheduler_getstate.html
Kind regards,
Yes it has an export, but it’s pretty useless for something like excel without the y-axis items. OK, I will correlate them.