Hi there,
I tried to invoke a widget method to export the chart but return false on the browser console.
$scope.export = function(){
console.log($scope.chartConfig);
$scope.chartConfig.jqxChart('saveAsJPEG', 'myChart.jpeg', 'http://www.jqwidgets.com/export_server/export.php');
};
I also tried to export a grid and works fine.
$scope.download = function(){
$scope.settings.jqxGrid('exportdata', 'xls', 'jqxGrid');
};
Can you show an example how to export the chart?
Thanks!