I have a page that contains some data and some Highcharts. Highcharts has some fantastic functionality for exporting the chart as an image. How do I include the contents of a table or div to be exported with the chart so that there is one big image or pdf that contains the chart and the data? What I have tried so far, none of which is ideal, is:
html2canvas, seems like the best solution but does not seem to include Highcarts. Maybe I'm doing something wrong as the documentation doesn't seem great and I have been unable to find any good examples from Goggling that include the charts.
The second best solution that I have come across is including the data in the Highcharts. Example of this is located: http://jsfiddle.net/highcharts/z9zXM/ This could work, but would destroy the current formatting on the page. In other words, it would be an ugly solution :).
The other solutions that I found are to do with screenshots, but this would not capture the full page.
The ideal solution that may or may not exist is, using JavaScript in someway to combine a div or table with the Highchart into a pdf or jpg, is this possible and if it is, where would I find an example?