Alain Gauthier
Alain Gauthier

Reputation: 889

Highstock table data: navigable with the range selector and the navigator - scrollbar

Anyone had created a table view, not creating a chart from a table, but a pure table grid view using the highstock library?

I need to be able to navigate in time (table grid get updated dynamically, like chart does) using the navigator-scroll-bar and range selector. Basically just replace the chart by a pure HTML table grid of data.

It needs to be done with highstock chart, probably not highchart library, coz I am looking for time navigation component to update the table accordingly to new time range changes...

I guess this could be achieved with callbacks on the navigator and range selector?

Upvotes: 0

Views: 740

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37578

You need to catch afterSetExtremes, get all visible serie's data from chart.series (between min/max values which limit range) and return table in defined i.e div.

Upvotes: 0

Related Questions