當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


d3.js d3.extent()用法及代碼示例


D3.js中的d3.extent()函數用於使用自然順序從給定數組返回數組中的最小值和最大值。如果數組為空,則返回undefined,undefined作為輸出。

用法:

d3.extent(Array)

參數:該函數接受參數Array,該參數是要計算其最小和最大值的元素數組。這裏的元素可能是整數或任何字符串。


返回值:它從給定數組返回數組中的最小值和最大值。

以下程序說明了D3.js中的d3.extent()函數。

示例1:

<html> 
  
<head> 
    <title> 
      Getting minimum and  
      maximum value in an array 
  </title> 
</head> 
  
<body> 
    <script src='https://d3js.org/d3.v4.min.js'> 
  </script> 
  
    <script> 
        // initialising the array of elements 
        var Array1 = [10, 20, 30, 40, 50, 60]; 
        var Array2 = [1, 2]; 
        var Array3 = [0, 1.5, 6.8]; 
        var Array4 = [.8, .08, .008]; 
  
        // Calling to d3.extent() function 
        A = d3.extent(Array1); 
        B = d3.extent(Array2); 
        C = d3.extent(Array3); 
        D = d3.extent(Array4); 
  
        // Getting minimum and maximum value 
        document.write(A + "<br>"); 
        document.write(B + "<br>"); 
        document.write(C + "<br>"); 
        document.write(D + "<br>"); 
    </script> 
</body> 
  
</html>

輸出:

10, 60
1, 2
0, 6.8
0.008, 0.8

示例2:

<html> 
  
<head> 
    <title> 
      Getting minimum  
      and maximum value 
  </title> 
</head> 
  
<body> 
    <script src='https://d3js.org/d3.v4.min.js'> 
  </script> 
  
    <script> 
        // initialising the array of elements 
        var Array1 = []; 
        var Array2 = ["a", "b", "c"]; 
        var Array3 = ["A", "B", "C"]; 
        var Array4 = ["Geek", "Geeks", "GeeksforGeeks"]; 
  
        // Calling to d3.extent() function 
        A = d3.extent(Array1); 
        B = d3.extent(Array2); 
        C = d3.extent(Array3); 
        D = d3.extent(Array4); 
  
        // Getting minimum and maximum value 
        document.write(A + "<br>"); 
        document.write(B + "<br>"); 
        document.write(C + "<br>"); 
        document.write(D + "<br>"); 
    </script> 
</body> 
  
</html>

輸出:

undefined, undefined
a, c
A, C
Geek, GeeksforGeeks

注意:在上麵的輸出中,第一個元素是最小值,第二個元素是最大值。

參考: https://devdocs.io/d3~4/d3-array#extent



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 D3.js | d3.extent() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。