jqPlotを試していますが、別のシリーズの名前を設定する方法がわかりません。
現在、私のコードは次のようになっています。
$(document).ready(function () {
$.jqplot('chartdiv', [
[[201201, 10], [201202, 20], [201203, 30], [201204, 60], [201205, 40]],
[[201201, 5], [201202, 10], [201203, 7], [201204, 8], [201205, 11]]
], {
axes: {
xaxis: {
label: "Year/month",
pad: 0
},
yaxis: {
label: "Amount (Kr)"
}
},
legend: {
show: true
}
});
});
ダイアグラムはレンダリングされますが、シリーズの名前はシリーズ1およびシリーズ2です。シリーズの名前を制御する方法はありますか?