I am working on creating a line stock highchart similar to the example shown here: https://www.highcharts.com/demo/stock/lazy-loading
In the provided example, the initial load fetches data from
https://demo-live-data.highcharts.com/aapl-historical.json
, specifically 0-165 records when the All
option is selected in the time range tool.
However, if further drill-down or selection of specific time ranges is made, more data is fetched dynamically from the server.
Question: Considering millions of data points spanning from 2000 to 2022, what should be displayed initially for the All
option? How should the initial dataset or filter be determined?
NOTE: I will be dealing with millions of data points between 2000 and 2022 going forward. What should be retrieved from the server during the first chart load from this vast dataset?
For reference, the example of the time series data I will have can be found in the mock-data=>i.js
folder/file, although it's not currently utilized in the above example.
You can also refer to Highcharts' 1.7 million points example: https://stackblitz.com/edit/js-wng4y6?file=index.js
P.S.: As a newcomer to stockhighcharts, I'm struggling to find detailed explanations. Seeking assistance from the community for further guidance.