jqplot を使用していますが、X 軸の間隔に問題があります。
これが私のコードです:
$(document).ready(function(){
var plot3 = $.jqplot('CogsLineGraph', [[1,2,3,4,5,6], [2,3,4,5,6,7], [3,4,5,6,7,8]],
{
title:'Cogs (Last 6 Months)',
seriesDefaults:
{
rendererOptions: {smooth: true}
},
series:[
{
lineWidth:1,
markerOptions: { size:7, style:'dimaond' }
},
{
lineWidth:1,
markerOptions: { size: 7, style:"dimaond" }
},
{
lineWidth:1,
markerOptions: { size:7, style:"filledSquare" }
}
]
}
);
});
Web ページに表示されるグラフのイメージを次に示します。
X 軸の値は次のとおりです。
0、0.5、1、1.5、2、2.5 など
X 軸の値が次のようになるようにコードを変更する方法を教えてください。
0、1、2、3など