Forum Discussion
_anomDiebolt_
Qrew Elite
Go to this ugly chart:
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=q&qid=84
Paste this code into the console:
Then apply the Un-HighCharted Waters technique with the above code as described here:
https://community.quickbase.com/quickbase/topics/what-is-the-hylo-technique
If you needs additional assistance feel free to contact me off-world using the information in my profile:
https://getsatisfaction.com/people/dandiebolt
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=q&qid=84
Paste this code into the console:
var chart = Highcharts.charts[0];See screenshot of resulting Chart.
var options = chart.options;
chart.destroy();
options.xAxis[0].categories = _.filter(options.xAxis[0].categories, function(item, index) {
return index < 10;
});
options.xAxis[0].labels.step = 1;
options.series[0].data = _.filter(options.series[0].data, function(item, index) {
return index < 10;
});
new Highcharts.Chart(options);
Then apply the Un-HighCharted Waters technique with the above code as described here:
https://community.quickbase.com/quickbase/topics/what-is-the-hylo-technique
If you needs additional assistance feel free to contact me off-world using the information in my profile:
https://getsatisfaction.com/people/dandiebolt
ArchiveUser
8 years agoQrew Captain
Your code gives me this error:
VM127:2 Uncaught TypeError: Cannot read property 'options' of undefined at <anonymous>:2:20
(anonymous)@VM127:2
VM127:2 Uncaught TypeError: Cannot read property 'options' of undefined at <anonymous>:2:20
(anonymous)@VM127:2