I have a report like page which displays a gridview and a chart created from .Web.UI.DataVisualization.Charting which I want to convert to pdf. Currently I am using iTextSharp which in my opinion is really great. I managed to create the table in the pdf but cannot find a way how to display the chart as well. Any ideas pls..
Share
You need to call
chart.Paintto render the chart to aBitmapobject.You can then add the image to the PDF as described here.