I have configured my application to use Highcharts client side export (https://www.highcharts.com/docs/export-module/client-side-export), on page load I create a chart and call the exportChart
method as shown in this example (http://jsfiddle.net/5dry1oqg/1/).
My problem is that I don't want to download the image immediately, instead I want to use it in a print version which could be called later. What I need to know is if there is a way of intercepting the download, for instance when a Blob is created (if that's what happens).
I suspect there isn't as I don't find any documentation on this from Highcharts, any help appreciated.