Paging on the chart

hi, I have a lot of data to draw on the chart, is it possible to make a paging on the chart?

my sample script :
https://snippet.webix.com/fma2maa1

Thank you in advance.

Hello @Captluff1,

hi, I have a lot of data to draw on the chart, is it possible to make a paging on the chart?

The chart component does not support paging. However, you can sync up the data displayed in your datatable and the data displayed in your chart. Please take a look at the following example: Code Snippet.

Essentially, we are dynamically parsing the data that is present on the current page of the datatable inside of our chart. To do this, we are using the this.data.getRange() method of the datatable’s inner DataStore - this lets us get the data we need.

@Dmitry,

awesome, thanks for your response,
it really helped me