2

我正在使用 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 等

4

1 回答 1

2

试试这个,

axes: {
xaxis: {

    ticks: ['1','2','3','4','5','6'];
       }
}
于 2013-01-16T02:58:34.987 回答