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


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


这个d3.brushY()函数在D3.js中用于沿y维创建一个新的一维画笔。

用法:

d3.brushY();

参数:该函数不接受任何参数。

返回值:此函数沿y轴返回新创建的一维笔刷

例:在此示例中,我们将使用此方法在SVG元素上创建一维笔刷以及大小为600×600像素的y轴笔刷。



HTML

<!DOCTYPE html>  
<html>  
      
<head>  
    <title>  
        D3.js | d3.brushY() Function  
    </title>  
      
    <script src =  
        "https://d3js.org/d3.v4.min.js">  
    </script>  
</head>  
  
<body>  
    <svg width=600 height=600 id="brush"></svg> 
    <script>  
          
        // Selecting SVG element 
        d3.select("#brush") 
        // Creating a brush along y-axis  
        // using the d3.brush function 
        .call( d3.brushY()              
        // Initialise the brush area:start at  
        // 0,0 and finishes at given width,height 
        .extent( [ [0,0], [600,600] ] )        
      ) 
    </script>  
</body>  
  
</html> 

输出:


参考: https://devdocs.io/d3~5/d3-brush#brushY

相关用法


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