This is a migrated thread and some comments may be shown as answers.

Export Chart data to Excel

1 Answer 292 Views
Chart
This is a migrated thread and some comments may be shown as answers.
Jako
Top achievements
Rank 1
Jako asked on 04 Feb 2015, 02:08 PM
Hi there

We are using Kendo Charts in our application. We can successfully export the charts using the following jQuery.
$("#exportASPBarChart").click(function () {
    var chart = $("#ASPBarChart").data("kendoChart");
    var image = chart.imageDataURL();
    var a = $("<a>").attr("href", image).attr("download", "ASPBarChart.png").appendTo("body");
    a[0].click();
});
Is there a way to export the data to a Excel file?

Thank you.

1 Answer, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 05 Feb 2015, 04:04 PM
Hi Jako,

Exporting Charts data to Excel is currently not supported, neither there is a good workaround that we can suggest. I would suggest to submit this as a feature request on our UserVoice portal, so we and other members of the community can evaluate, vote and comment it.

Regards,
Iliana Nikolova
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Chart
Asked by
Jako
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or