2012-09-05 120 views

回答

0

jqChart軸標籤的格式取決於計算的日期時間間隔。如果間隔變成「小時」,它將更改標籤字符串格式。

你可以改變字符串格式:

axes: [ 
     { 
      type: 'dateTime', 
      location: 'bottom', 
      labels: { stringFormat: 'm/d/yy' } 
     } 
    ] 

,並在這種情況下,標籤不會轉向的時間。

更多標籤格式,你可以在這裏找到:

http://www.jqchart.com/documentation/userguide/default.aspx#!LabelsFormatting

1

嗨,你可以指定intervalTypedateTimeAxisOptions當你構建圖表

here是文檔,你可以做這樣的事情,這應該解決您的peoblem

axes: [ 
    { 
      type: 'dateTime', 
      location: 'bottom', 
      minimum: new Date(2011, 1, 4), 
      maximum: new Date(2011, 1, 18), 
      interval: 1, 
      intervalType: 'days' 
     } 
    ]