My initial requirement is to create a pdf that contains highcharts and send it to users. As per my initial analysis it seems that in order to display highcharts it needs to be rendered in an html page by running on a browser and then converting it to pdf.
I am working on windows service and I am using html agility pack to dynamically generate html pages. Is there anyway I can render this and convert this page to pdf?
(or)
can someone suggest any other way to dynamically generate highcharts without rendering and converting them to pdfs straight from the C# code.
Edit: The answer Sebastian suggested was greatly appreciated. Can somebody suggest any other alternatives or other solutions to resolve this scenario?