Hi, While going through the examples and sample and the forums, I could not come across any example that describes PDF export of Chart & Grid together from a FORM.
I can individually export the Chart & Grids but looks like there is something else I am missing when I club both of them together.
Thx
You have to create a report object first and then export to specific sections of that report.
Report r = new Report();
ISection gridsection = r.AddSection();
this.UltraWebGridDocumentExporter1.Export(this.UltraWebGrid1, gridsection);
this.UltraChart1.RenderPdfFriendlyGraphics(r.AddSection().AddCanvas().CreateGraphics());
Hi,
Can you provide an extended example for the above.
I am using the said example above, but I cant find a method to add the grid and Chart into a single report.