我目前有一个使用Highcharts的现有应用程序。应用程序中的所有内容都能在所有浏览器中完美运行。该图由多个系列组成,所有系列都有不同的颜色。
最近,我添加了能力服务器端,使用PhantomJS从各种应用程序页面生成自动PDF报告。包括Highcharts渲染图。
我使用以下命令执行此操作:
phantomjs convertpage.js url file size
convertpage.js包含以下内容:
var page = require('webpage').create(),
system = require('system'),
address, output, size;
if (system.args.length < 3 || system.args.length > 5) {
console.log('Usage: rasterize.js URL filename [paperwidth*paperheight|paperformat] [zoom]');
console.log(' paper (pdf output) examples: "5in*7.5in", "10cm*20cm", "A4", "Letter"');
phantom.exit(1);
} else {
address = system.args[1];
output = system.args[2];
page.viewportSize = { width: 600, height: 600 };
if (system.args.length > 3 && system.args[2].substr(-4) === ".pdf") {
size = system.args[3].split('*');
page.paperSize = size.length === 2 ? { width: size[0], height: size[1], margin: '0px' }
: { format: system.args[3], orientation: 'portrait', margin: '1cm' };
}
if (system.args.length > 4) {
page.zoomFactor = system.args[4];
}
page.open(address, function (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
phantom.exit();
} else {
var timeout = address.indexOf('graphs')>-1 ? 20000 : 500;
console.log('Timeout: '+timeout);
window.setTimeout(function () {
page.render(output);
phantom.exit();
}, timeout);
}
});
}
在呈现图表的应用程序页面上,我按照以下方式设置系列,通过浏览器在页面上运行良好:
$.each(dbFields, function (key, field){
var tmp = new Object();
tmp.name = fieldsObject[key];
tmp.color = colorsObject[key];
tmp.data = filtered[field];
tmp.min = 0;
tmp.lineWidth = 1.5;
seriesCalculated.push(tmp);
});
然而,当我使用上面的脚本和PhantomJS生成它时,没有应用任何颜色,也没有线条粗细......它只是每个系列的一条非常粗的浅灰色线。
非常感谢任何帮助/想法!
可以找到错误输出的样本here