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


d3.js quantile.invertExtent()用法及代码示例


d3.js中的Quantile.invertExtent()函数用于为指定范围内的对应值返回在指定域中存在的值的范围。

用法:

quantile.invertExtent( value )

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

  • value:它是与指定范围相对应的值。

返回值:此函数从指定的域返回一个值。

以下示例程序旨在说明D3.js中的Quantile.invertExtent()函数:



范例1:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
    <script src= 
        "https://d3js.org/d3-color.v1.min.js"> 
    </script> 
    <script src= 
    "https://d3js.org/d3-interpolate.v1.min.js"> 
    </script> 
    <script src= 
    "https://d3js.org/d3-scale-chromatic.v1.min.js"> 
    </script> 
</head> 
  
<body> 
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1> 
  
    <p>quantile.invertExtent() Function </p> 
  
    <script> 
        var quantile = d3.scaleQuantile() 
            // Setting domain for the scale. 
            .domain([1, 10]) 
            // Setting the range of the scale. 
            .range([0, 960]); 
  
        // Printing the output 
        document.write("<h3>" + 
            quantile.invertExtent(960) + 
            "</h3>"); 
        document.write("<h3>" + 
            quantile.invertExtent(0) + 
            "</h3>"); 
    </script> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src="https://d3js.org/d3.v4.min.js"> 
    </script> 
    <script src= 
        "https://d3js.org/d3-color.v1.min.js"> 
    </script> 
    <script src= 
    "https://d3js.org/d3-interpolate.v1.min.js"> 
    </script> 
    <script src= 
    "https://d3js.org/d3-scale-chromatic.v1.min.js"> 
    </script> 
</head> 
  
<body> 
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1> 
  
    <p>quantile.invertExtent() Function </p> 
  
    <script> 
        var quantile = d3.scaleQuantile() 
            // Setting domain for the scale. 
            .domain([1, 10]) 
            // Setting the range of the scale. 
            .range(["red", "blue", "orange"]); 
  
        // Printing the output 
        document.write( 
            "<h3>quantile.invertExtent(\"blue\"):" + 
            quantile.invertExtent("blue") + "</h3>"); 
        document.write( 
            "<h3>quantile.invertExtent(\"red\"):" + 
            quantile.invertExtent("red") + "</h3>"); 
    </script> 
</body> 
  
</html>

输出:




相关用法


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