2014-12-28 405 views
0

我想創建一個圖形,其中x軸由時間戳(日期)和Y軸數據組成。 我遇到了X軸的問題, 我該如何編輯代碼,以便它具有像「date(Y-m-d)」這樣的模板。x軸時間戳圖js

請我需要幫助我搜索了很多,並沒有發現什麼

$a=[1419717600000,0],[1419631200000,1000],[1419544800000,1000],[1419458400000,6000],[1419372000000,2000],[1419285600000,0],[1419199200000,0],[1419112800000,0],[1419026400000,0],[1418940000000,0],[1418853600000,0]; 

<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){ 
$(function() { 


    var plot = $.plot($("#placeholder"),[ 


     { data: [$a], color: 'black'} 

    ], { 

     series: { 
      lines: { show: true, fill: true, fillColor: 'rgba(143, 198, 242, 0)' }, 
      points: { show: true} 
     }, 
     grid: { 
      color: 'transparent', 
      margin: 10 
     },xaxis: { 
     mode: "time", 
    timeformat: "%Y/%m/%d" 
    }, 
     xaxis: { 
      color: 'white', 
      font: { color: 'white', family: 'sans-serif', size: 11} 
     }, 
     yaxis: { 
      color: 'white', 
      font: { color: 'white', family: 'sans-serif', size: 11} 
     } 
    }); 
}); 



});//]]> 

</script> 

回答

0

嘗試通過1000的時間戳值相乘,作爲回答here。 (太低代表意見)

+0

我嘗試過,現在也... ...仍然不工作:| – TheQuestionerMan