12.4生成pdf,图表由chartist绘制,因为chartist是基于svg的。我可以通过html(test-chartist.html right chart)在浏览器中看到图表。但是当我使用命令wkhtmltopdf --dpi 300 --page-size A4 test-chartist.html test3.pdf
时,test3.pdf中的图表是空白的。然后我添加流动的js,结果很奇怪size is not right and direction is not right too
Function.prototype.bind = Function.prototype.bind || function (thisp) {
var fn = this;
return function () {
return fn.apply(thisp, arguments);
};
};

任何人都可以帮助我吗?非常感谢你
答案 0 :(得分:1)
var options = {
width: 800,
height: 150,
donut: true,
donutWidth: 30,
startAngle: 240,
total: 30,
showLabel: true,
animation:false
};
new Chartist.Pie('#mainImg', {
series: [10,10]
},options);
我希望它可以帮助别人。