jqPlot を使用して、いくつかの Web ページに多くのグラフを表示しています。これらのグラフを画像ファイルに保存できるようにしたいと考えています。
これを行う最善の方法は何ですか?グラフを画像ファイルに保存できる右クリック メニュー オプションをグラフに設定することはできますか?
私のグラフの1つのコードは次のとおりです。
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" }
}
]
}
);
グラフを画像ファイルに保存できるようにするには、上記のコードに何を追加する必要がありますか?