Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I am having problem displaying Chart Image inside the Image viewer.
I have used one report1.rdlc file and placed on pie chart inside of it. In the reportviewer I have added this report1.rdlc as report and on button click wrote the folowing code:

ReportViewer1.LocalReport.DataSources.Clear();
           ReportDataSource rds = new ReportDataSource();
           rds.Name = "DataSet1";
           rds.Value = GetReportDataByProduct();
           ReportViewer1.LocalReport.DataSources.Add(rds);


But the problem here is when debugging I am able to see texts inside the report, but not the image.

I need help...
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900