我正在使用jqPlot在某些網頁上顯示許多圖。我希望能夠將這些圖表保存爲圖像文件。將jqPlot圖保存爲圖像文件
這樣做的最好方法是什麼?是否有可能在圖形上有一個右鍵菜單選項,使圖形能夠保存到圖像文件中?
這裏是我的圖的一個部分代碼:
var plotCogsLineGraph = $.jqplot('FinancialsLineGraph', [[30,31,34,40,45], [34,38,31,42,38]],
{
axes:
{
xaxis:
{
ticks: ['5','4','3','2','1']
},
yaxis:
{
label:'%',
pad: 1.05,
ticks: ['0','15','30','45','60']
}
},
width: 480, height: 270,
legend:{show:true, location: 's', placement: 'insideGrid', renderer: $.jqplot.EnhancedLegendRenderer},
seriesDefaults:
{
rendererOptions: {smooth: true}
},
series:[
{
lineWidth:1,
label:'COGS',
markerOptions: { size:1, style:'dimaond' }
},
{
lineWidth:1,
label:'Wages',
markerOptions: { size: 1, style:"dimaond" }
}
]
}
);
什麼需要添加到這個上面的代碼,以使圖形保存爲圖像文件?
我得到一個錯誤的行保存到圖片中:var divElem = $(」 ) .attr('src',divGraph); – user2023359 2013-02-14 23:03:24
報價並未終止標籤 – AnthonyLeGovic 2013-02-15 07:25:47
下載試試這個Download – 2013-09-17 08:47:25