2012-01-12 75 views

回答

3

指定ticks參數 - http://jsfiddle.net/UEePE/1029/

var data = [[-373597200000, 315.71], [-370918800000, 317.45], [-368326800000, 317.50], [-99968400000, 319.79]]; 

$.plot($("#placeholder"), data, { 
     yaxis: { 
     }, 
     xaxis: { mode: "time", 
       ticks: 18, 
       minTickSize: [1, "month"], 
       tickLength: 1, 
       min: (new Date("2000/01/01")).getTime(), 
       max: (new Date("2001/07/02")).getTime() 
}, 
     "lines": {"show": "true"}, 
     "points": {"show": "true"}, 
     clickable:true,hoverable: true 
}); 
+0

謝謝你,它的偉大工程。 – shiro 2012-01-12 17:53:07