D3.js中的d3.timeHour函數用於返回日期在給定的開始和結束時間範圍內的所有小時。
用法:
d3.timeHour.range(start, end, step);
參數:該函數接受以下三個參數:
- Start:此參數保存給定的開始時間。
 - end:此參數保存給定的結束時間。
 - step:這是用於跳過小時的可選值。
 
返回值:此函數返回給定範圍內所有可能的小時數。
以下示例程序旨在說明D3.js中的d3.timeHour函數:
示例1:
<!DOCTYPE html> 
<html> 
   <head> 
      <title> 
          D3.js | d3.timeHour Function  
      </title> 
      <script src = 
          "https://d3js.org/d3.v4.min.js"> 
      </script> 
   </head> 
   
   <body> 
         
      <script> 
         
         // Initialising start and end time 
         var start = new Date(2015, 07, 01, 4, 20); 
         var end = new Date(2015, 07, 01, 8, 20); 
           
         // Calling the timeHour function 
         // without step value 
         var a = d3.timeHour.range(start, end); 
           
         // Getting the hours values 
         console.log(a); 
      </script> 
   </body> 
</html>輸出:
["2015-07-31T23:30:00.000Z", "2015-08-01T00:30:00.000Z", "2015-08-01T01:30:00.000Z", "2015-08-01T02:30:00.000Z"]
示例2:
<!DOCTYPE html> 
<html> 
   <head> 
      <title> 
          D3.js | d3.timeHour Function  
      </title> 
      <script src = 
          "https://d3js.org/d3.v4.min.js"> 
      </script> 
   </head> 
   
   <body> 
         
      <script> 
         
         // Initialising start and end time 
         var start = new Date(2015, 07, 01, 1, 20); 
         var end = new Date(2015, 07, 01, 6, 20); 
           
         // Calling the timeHour function 
         // with step value 
         var a = d3.timeHour.range(start, end, 2); 
           
         // Getting the hour values 
         console.log(a); 
      </script> 
   </body> 
</html>輸出:
["2015-07-31T20:30:00.000Z", "2015-07-31T22:30:00.000Z", "2015-08-01T00:30:00.000Z"]
參考: https://devdocs.io/d3~5/d3-time#timeHour
相關用法
- PHP each()用法及代碼示例
 - p5.js day()用法及代碼示例
 - p5.js int()用法及代碼示例
 - p5.js second()用法及代碼示例
 - PHP dir()用法及代碼示例
 - PHP each()用法及代碼示例
 - p5.js arc()用法及代碼示例
 - d3.js d3.hcl()用法及代碼示例
 - PHP Ds\Map put()用法及代碼示例
 - d3.js d3.lab()用法及代碼示例
 - d3.js d3.max()用法及代碼示例
 - p5.js str()用法及代碼示例
 
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.timeHour Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。
