我目前有一个使用 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 生成它时,没有应用任何颜色,也没有应用线条粗细......对于每个系列来说,它只是一条非常粗的浅灰色线。
任何帮助/想法将不胜感激!
可以在此处找到不正确输出的示例