我正在使用 jqplot 在我的应用程序中显示图表。我想以 PDF 格式导出此图表。为此,我计划生成图表的运行时图像。jqplot 中有一个按钮,它显示了使用 javascript 从 jqplot 生成的图像。它使用以下代码。
btn.bind('click', {chart: $(this)}, function(evt) {
var imgelem = evt.data.chart.jqplotToImageElem();
var div = $(this).nextAll('div.jqplot-image-container').first();
div.children('div.jqplot-image-container-content').empty();
div.children('div.jqplot-image-container-content').append(imgelem);
div.show(500);
div = null;
});
我想在运行时使用 PHP 做到这一点,但我不知道如何实现这一点。帮我解决这个问题。谢谢