Hi!
I need to refresh datasource. But as I know from code setDataSource runs _redraw function.
It renders only one date per page.
But it is not solution. Because when I manually run redraw with setTimeout, it shows what I expected. And shows 10 events per page.
Is it possible to fix it.
My manual code:
      timeline.setDataSource(data);
        if (data.length > 0) {
            setTimeout(() => {
                timeline.redraw();
            });
        }