I have following problem with exporting Chart to PDF File: cannot convert system.drawing.graphics to infragistics.Documents.graphics:
Report r = new Report();
Graphics g = r.AddSection().AddCanvas().CreateGraphics(); // i didnt understand and if i try to cast i get another failure.
Thank you very much for the answer.
Your Graphics g object should be of type System.Drawing.Graphics instead of Infragistics.Documents.Graphics. If you change its type, the code should work.