Hello,
How can I export an ultrachart to a PDF file?I found this place http://blogs.infragistics.com/forums/t/28162.aspx but it didn't help me.
I also did something like that (which I so at another place):
Infragistics.Documents.Reports.Report.Report r = new Infragistics.Documents.Reports.Report.Report();Infragistics.Documents.Reports.Report.Section.ISection sec = r.AddSection();this.ultraChart.RenderPdfFriendlyGraphics(sec.AddCanvas().CreateGraphics());
But it didn't work, and I can't figure out why.
Please help, thank you,
Zubi
Hello Zubi,
Could you please review the sample attached to this post and see if it meets your requirements.
Please feel free to let me know if I misunderstood you or if you have any other questions.
Hi Boris,
Thank you, that did work. I guess I forgot to do the publish for the report and that's why I didn't see results from the export of the chart.
Thanks again,