Starting in 2019, the Reporting control is no longer included in Essential Studio®. If you're experiencing issues with the Syncfusion� Reporting Platform, Report Viewer, Report Designer, or Report Writer, we recommend migrating to Bold Reports, our dedicated reporting platform.

Bold Reports offers a comprehensive suite of tools and features for all your reporting needs, and we will help you make a smooth transition from the discontinued control. Our support team at https://support.boldreports.com/ is here to assist you with any questions or difficulties you may encounter during the migration process.

We thank you for choosing Syncfusion� and appreciate your understanding.

Question

Hi,

I have problem. can you help me please ?

I want to export the graph in .pdf format, and save into computer.

But, i don't want preview in screen. i want to "directly" .pdf export.



ChartToPdf_ac908d77.rar

1 Reply

RN Ram Nivas T Syncfusion Team August 1, 2012 04:25 AM UTC

Hi Cansu,

Thanks for your interested in Syncfusion products.

If you like to export the RDL Reports without preview on the screen then please use our ReportWriter to achieve this requirement, Please find the code snippet below.
<code>
//reportPath is the RDL file location
string reportPath = @"Charts.rdl";
ReportWriter reportWriter = new ReportWriter(reportPath);
//Save the report as Pdf
reportWriter.Save("Charts.pdf", WriterFormat.PDF);
</code>

please let me know if you have any queries.

Regards,
Ram


Loader.
Up arrow icon