Can jQuery be used in wicked_pdf to render charts?

I want to display charts created by HighCharts that used jQuery in the pdf that wicked_pdf generates. I looked through the website and it seems that there is a way to do this, I just can't figure it out. My charts work fine in a regular html view. Maybe this is not possible?

+4
source share
1 answer

I also needed to adjust the width in the view, it looked fine in my html view, but for some reason the width was very small in pdf. Once I set the width in the view and animation to false, it worked like a charm.

options.chart["width"] = 750, options.plotOptions["pie"]["animation"] = false 
+1
source

Source: https://habr.com/ru/post/1383573/


All Articles