我正在使用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等
答案 0 :(得分:2)
试试这个,
axes: {
xaxis: {
ticks: ['1','2','3','4','5','6'];
}
}