Hi,
Please try to set HtmlToPdf.Options.MinLoadWaitTime to a larger value. For example:
Code: C#
//Instruct the Html to PDF converter to wait for to seconds
//before trying to convert the page
HtmlToPdf.Options.MinLoadWaitTime = 5000;
//Convert the page
HtmlToPdf.ConvertUrl(.....);
The reason that only part of your SVG chart is shown is because your SVG chart has an animation effect. The animation "grows" your chart from left to the right. So if the animation takes 3 seconds to play and the converter converts it at 1.5 second, then part of the chart won't show.
The converter does not when the animation is done. There are three ways to handle this situation:
1. Turn off animation on your svg chart;
2. Increase HtmlTopdf.Options.MinLoadWaitTime;
3. Use manual trigger to trigger the conversion:
http://www.essentialobjects.com/doc/4/htmltopdf/eo_js.aspxLook for "Triggering conversion manually".
Option 3 is the most accurate way however it requires you to put in additional code to notify us when your page is ready to be converted. Option 2 would make the conversion longer because the converter may just unnecessarily wait longer than needed. Option 1 would turn off the animation effect all together, however if you can turn on/off animation based on JavaScript, you can add JavaScript code to check whether you are running inside our converter, then only turn it off when you are inside our converter.
Hope this helps. Please feel free to let us know if you have any more questions.
Thanks!