我正在使用 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" }
}
]
}
);
});
这是网页上显示的图表的图像:
在 X 轴上,值为:
0, 0.5, 1, 1.5, 2, 2.5 等
能否请我帮忙修改我的代码,使 X 轴上的值如下:
0、1、2、3 等