Hi
I have multiple RadHTMLCharts in my page. I need to export all RadHTMLCharts in Single PDF documenet or single PNG Image.
I am unable to export if concatenate the SVG String before export.
Can someone help me in exporting multiple charts.
Thanks in Advance
Khadeer
Exporting Mutliple RadHTML Charts into single PDF/PNG
Re: Exporting Mutliple RadHTML Charts into single PDF/PNG
HI,
Could you be a bit more precise
Who will export ? You ? "Anybody" user
How often (one shot ?)
Does it need to be client side ? (From which browser ?)
Could you be a bit more precise
Who will export ? You ? "Anybody" user
How often (one shot ?)
Does it need to be client side ? (From which browser ?)
Re: Exporting Mutliple RadHTML Charts into single PDF/PNG
Hi V1nce,
I have a web page with 3 RadHTMLChart which shows 3 different data.
Web page users need to export all Charts in a single PDF document or single PNG Image by using "Export Button".
I have a web page with 3 RadHTMLChart which shows 3 different data.
Web page users need to export all Charts in a single PDF document or single PNG Image by using "Export Button".
Re: Exporting Mutliple RadHTML Charts into single PDF/PNG
Have you looked at http://www.telerik.com/support/code-lib ... ng-and-pdf ?
let's suppose this fixes the first part of your problem (svg => pdf or img)
The second part would be to concatenate 3 imgs (or pdfs)
If the img/pdf ends up clientside then reupload them to server (using ajax) to a dedicated page (or method) that will do the concatenation
to concatenate 3 imgs the basic function of c# image namespace should be sufficent
http://stackoverflow.com/questions/2075 ... catenation
to concatenate 3 pdfs use a library like pdfsharp
http://pdfsharp.com/PDFsharp/index.php? ... &Itemid=45
other option would be to do the whole thing clientside using
canvg (svg =>canvas object)
http://gabelerner.github.io/canvg/examples/index.htm
multiple canvas => canvas => png
http://www.williammalone.com/briefs/how ... l5-canvas/
http://stackoverflow.com/questions/9238 ... pg-png-pdf
let's suppose this fixes the first part of your problem (svg => pdf or img)
The second part would be to concatenate 3 imgs (or pdfs)
If the img/pdf ends up clientside then reupload them to server (using ajax) to a dedicated page (or method) that will do the concatenation
to concatenate 3 imgs the basic function of c# image namespace should be sufficent
http://stackoverflow.com/questions/2075 ... catenation
to concatenate 3 pdfs use a library like pdfsharp
http://pdfsharp.com/PDFsharp/index.php? ... &Itemid=45
other option would be to do the whole thing clientside using
canvg (svg =>canvas object)
http://gabelerner.github.io/canvg/examples/index.htm
multiple canvas => canvas => png
http://www.williammalone.com/briefs/how ... l5-canvas/
http://stackoverflow.com/questions/9238 ... pg-png-pdf