Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
525
ultrachart and RenderPdfFriendlyGraphics
posted

Hi.

I create an ultrachart and then call the RenderPDFFriendlyGraphics function to render the chart to a pdf report. The code looks like this:

ICanvas canvas = newFlow.AddCanvas();

canvas.Width = new FixedWidth(210);

canvas.Height = new FixedHeight(170);

Graphics g = canvas.CreateGraphics();

ultraChart1.RenderPdfFriendlyGraphics(g);

The RenderPDFFriendlyGraphics takes a long time to execute. Is this normal? My chart consists of about 50 series each of 175 points.

Parents Reply Children