这个d3.brush()函数在D3.js中用于新创建2-D画笔。该笔刷一般是创建SVG元素的。
用法:
d3.brush();
参数:该函数不接受任何参数。
返回值:此函数返回一个新创建的笔刷。
例:在此示例中,我们将使用此方法在SVG元素上创建大小为600×600像素的画笔。
HTML
<!DOCTYPE html>
<html>
<head>
<title>
D3.js | d3.brush() 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 using the
// d3.brush function
.call( d3.brush()
// Initialise the brush area:start at
// 0,0 and finishes at given width,height
.extent( [ [0,0], [600,600] ] )
)
</script>
</body>
</html>
输出:画笔创建成功,您可以使用此画笔拖动以创建矩形。
相关用法
- PHP ord()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- p5.js arc()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP each()用法及代码示例
- CSS hsl()用法及代码示例
- d3.js d3.mean()用法及代码示例
- d3.js d3.map.get()用法及代码示例
- d3.js d3.sum()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- PHP pow( )用法及代码示例
- p5.js nfc()用法及代码示例
- PHP pi( )用法及代码示例
- p5.js nf()用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 D3.js brush() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。