In my project have requirement to export chart into png format.Is it possible in kendo-ui with out using ink-space(3rd party tool)?
Asked
Active
Viewed 890 times
1 Answers
1
It is possible if you know how to convert SVG to PNG (the Kendo Chart doesn't provide this out of the box). Inksape is an open source tool which can convert SVG to various formats. However you must not use it for some reason you can check this .NET SVG rendering library: http://svg.codeplex.com

Atanas Korchev
- 30,562
- 8
- 59
- 93
-
sorry we don't have idea about convert SVG to PNG.Can you please help us? – user2159515 Mar 12 '13 at 06:30
-
I said that in my reply - either use inkskape or try the svg .net library from the link. – Atanas Korchev Mar 12 '13 at 07:22
-
Actually my doubt is how the chart convert into SVG? – user2159515 Mar 12 '13 at 07:25
-
Check the chart API documentation. Look for the sag() method: http://docs.kendoui.com/documentation/api/dataviz/chart – Atanas Korchev Mar 12 '13 at 07:26
-
I think that there is a typo error in @AtanasKorchev answer and he meant `svg()` instead of `sag()`. – OnaBai Mar 12 '13 at 07:43
-
Yes. `svg()` is the method. Seems stackoverflow converts it to sag() if it is not put in a code block. – Atanas Korchev Mar 12 '13 at 07:46