I am trying to scrape data out of a HighCharts. I've tried a diverse amount of things following similar questions/problems on StackOverflow but I can't seem to crack it here.
It's on this URL: https://www.bustabit.com/user/9mins
So some solutions suggest to use the console command Highcharts.charts[..]. That does not work here. It's possible to just grab "highcharts-series-group". However the resulting data:
M 3.7745098039216 79.5788071428571 L 7.5871459694989 94.70737857142853 L 11.399782135076 48.41395 L.....
This is transformed data (data -> transformation -> SVG coordinates?). So the question would be how to get the data pre-transformed.
A different StackOverflow question/answer managed to do the reverse transformation by finding the code in a local js file in the page sources. I've found something similar in the page sources but very difficult to decipher because of it's length.
Am I to find the answer in this file to reverse engineer the numbers or is there a way to get the data pre-transformation in a different way?