2014-09-22 81 views
1

如何能在這個格式我們格式的日期Highcharts日期

enter image description here

現在它是這樣的:

enter image description here

xAxis: { 
      type: 'datetime' 
     } 

JS Fiddle here

+0

你的意思是你不想要跳過x軸的日期? – void 2014-09-22 09:13:11

+0

@FREAKENGINEER感謝您的快速回復。它應該看起來像這樣[鏈接](http://i.stack.imgur.com/GgrBB.png) – 2014-09-22 09:14:49

回答

1

我只是改變了公司你的X軸

這裏DE是:

xAxis: [{ 
      type: 'datetime', 
      labels: { 
      formatter: function() { 

       return Highcharts.dateFormat('%e', this.value); 

      } 
     }, 

     tickInterval: 1 * 24 * 3600 * 1000 
     }, 
     { lineWidth: 0, 
      minorGridLineWidth: 0, 
      lineColor: 'transparent', 
      minorTickLength: 0, 
      tickLength: 0, 
      type: 'datetime', 
      labels: { 
      formatter: function() { 
       return Highcharts.dateFormat('%b', this.value); 

      } 
     }, 

     tickInterval: 30 *24 * 3600 * 1000 
     }] 

詳情關注該鏈接的jsfiddle http://jsfiddle.net/3nLmxs89/1/

+0

非常感謝,有一點疑問 - 關於調整幾個月的終點。如果圖表從1月30日開始,我們還需要顯示jan [**在這個JS FIDDLE **中](http://jsfiddle.net/roydondsouza/3nLmxs89/2/)我們可以爲這樣的條件設置什麼邏輯 – 2014-09-22 11:57:17

+0

Check出這個鏈接.. http://jsfiddle.net/3nLmxs89/3/,如果解決您的問題,那麼請不要忘記upvote並將其標記爲正確的答案。 – void 2014-09-23 09:59:17

+0

很酷,謝謝。加載動態數據時遇到問題,我會盡快回復您。再次感謝。 – 2014-09-23 12:51:25