I'm having a JQXChart on a page:
$('#chartContainer').jqxChart(settings);
What I'd like to do is the push this chart - as an image - to the server. The component supports functionality like export to image:
But I can't see any possibility to just getting the image, without actually downloading it by a web browser. I have to pass this image to the back-end service.
I saw this kind of functionality in another JS framework:
http://www.jqchart.com/jquery/chart/ChartFeatures/ImageDataURL
Is it possible in jqwidgets? Or... somehow achievable through html5...
Thanks in advance