All Products
Demos
Pricing
Services
Blogs
Docs & Support
Search
Shopping cart
Login
Contact Us
Get A Free Trial
close mobile menu
Telerik Forums
/
UI for ASP.NET AJAX Forum
/
Chart (Obsolete)
/
Chart Export
Cancel
Telerik UI for ASP.NET AJAX
Resources
Buy
Try
Thread is closed for posting
Feed for this thread
2 posts, 0 answers
Alfonso Calderon
16 posts
Member since:
Aug 2005
Posted 29 Mar 2010
Link to this post
Hello, good day.
Is there a way to export a chart to excel like the grid control?
Schlurk
812 posts
Member since:
May 2009
Posted 30 Mar 2010
Link to this post
The RadChart does not have an export to Excel feature currently. It does have a "Save" function however, and this can be used to save either to an image or a file stream which can then be used in that form:
RadChart1.Save(Server.MapPath(@
"~/MyImage.png"
), System.Drawing.Imaging.ImageFormat.Png);
Back to Top