当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


d3.js threshold.domain()用法及代码示例


threshold.domain()函数用于设置阈值刻度的域。此处给出的值必须为非降序排列,否则,刻度的行为是不确定的。

用法:

threshold.domain([domain]);

参数:此函数接受上面给定和下面描述的单个参数。

  • domain:此参数按排序顺序接受元素数组,该数组设置了比例域。

返回值:此函数不返回任何值。

以下示例程序旨在说明阈值.D3.js中的domain()函数



范例1:

HTML

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8" /> 
    <meta name="viewport" path1tent= 
        "width=device-width,initial-scale=1.0" /> 
  
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
</head> 
  
<body> 
    <h2 style="color:green;">GeeksforGeeks</h2> 
  
    <p>threshold.domain() Function</p> 
  
    <script> 
        var threshold = d3.scaleThreshold() 
          
            // Setting domain for the scale. 
            .domain([1, 2, 3, 4]) 
            .range([10, 20, 30, 40, 50]); 
        let val1 = threshold(1); 
        let val2 = threshold(2); 
        let val3 = threshold(4); 
        document.write("<h4>" + val1 + "</h4>"); 
        document.write("<h4>" + val2 + "</h4>"); 
        document.write("<h4>" + val3 + "</h4>"); 
    </script> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8" /> 
    <meta name="viewport" path1tent= 
        "width=device-width, initial-scale=1.0" /> 
  
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
</head> 
  
<body> 
    <h2 style="color:green;">GeeksforGeeks</h2> 
  
    <p>threshold.domain() Function </p> 
  
    <script> 
        var threshold = d3.scaleThreshold() 
          
            // Setting domain for the scale. 
            .domain([1, 2, 3, 4]); 
        document.write("<h4>" + threshold(0) + "</h4>"); 
        document.write("<h4>" + threshold(4) + "</h4>"); 
    </script> 
</body> 
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 D3.js threshold.domain() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。