Exporting events along with y_unit labels

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:

Here is an example:

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:

In case of x/y axis - you can get it’s data with the getState method:

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.