D3.js中的brush.move()函数用于设置指定组上画笔的活动选择。
用法:
brush.move(group, selection);
参数:该函数接受如上所述和以下描述的单个参数
- group:此参数是在其上实现画笔的指定组。
- selection:此参数是数字数组。
返回值:此函数返回定义该元素的笔刷选择的数组。
以下示例程序旨在说明D3.js中的brush.move()函数
范例1:
<!DOCTYPE html>
<html>
<head>
<script src=
"https://d3js.org/d3.v5.min.js">
</script>
</head>
<body>
<center>
<h1 style="color:green;">GeeksForGeeks</h1>
<h3>D3.js | brush.move() Function </h3>
<button>Click</button>
<br>
<br>
<svg style="background-color:lightgreen;"
width="500" height="100">
</svg>
<script>
// Selecting SVG element
const svg = d3.select("svg");
const g = svg.append("g");
// Creating a brush using the
// d3.brush function
g.call(d3.brush());
// Use of brush.move() function
d3.select("button").on("click", function() {
g.call(d3.brush().move, [
[100, 0],
[400, 100]
])
});
</script>
</center>
</body>
</html>
输出:
范例2:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src=
"https://d3js.org/d3.v4.min.js">
</script>
<style>
circle {
fill-opacity:0.2;
}
circle.active {
fill-opacity:0.8;
stroke:red;
fill:green;
}
</style>
</head>
<body>
<center>
<h1 style="color:green;">GeeksForGeeks</h1>
<h3>D3.js | brush.move() Function </h3>
<svg width="600" height="300"></svg>
<script>
var data = d3.range(100).map(Math.random);
var svg = d3.select("svg"),
margin = {top:50, right:50,
bottom:50, left:50},
width = +svg.attr("width") -
margin.left - margin.right,
height = +svg.attr("height") -
margin.top - margin.bottom,
g = svg.append("g")
.attr("transform", "translate("
+ margin.left + ", " + margin.top + ")"
);
var x = d3.scaleLinear().range([0, width]),
y = d3.randomNormal(height / 2, height / 8);
var brush = d3.brushX()
.extent([[0, 0], [width, height]])
.on("start brush end", brushmoved);
g.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0, 0)")
.call(d3.axisTop(x));
var circle = g.append("g")
.attr("class", "circle")
.selectAll("circle")
.data(data)
.enter().append("circle")
.attr("transform", function (d) {
return "translate("
+ x(d) + ", " + y() + ")";
})
.attr("r", 10);
var gBrush = g.append("g")
.attr("class", "brush")
.call(brush);
gBrush.call(brush.move, [0.3, 0.5].map(x));
var bs = "";
function brushmoved() {
var s = d3.event.selection;
if (d3.event.type === "start"){
bs = d3.event.selection;
} else if (d3.event.type === "end"){
if (bs[0] !== s[0] && bs[1] !== s[1]) {
console.log('moved both');
} else if (bs[0] !== s[0]) {
console.log('moved left');
} else {
console.log('moved right');
}
}
if (s == null) {
handle.attr("display", "none");
circle.classed("active", false);
} else {
var sx = s.map(x.invert);
circle.classed("active", function (d) {
return sx[0] <= d && d <= sx[1];
});
handle.attr("display", null)
.attr("transform", function (d, i) {
return "translate("
+ s[i] + ", " + height / 2 + ")";
});
}
}
</script>
</center>
</body>
</html>
输出:
相关用法
- PHP Ds\Set add()用法及代码示例
- PHP each()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP Ds\Set first()用法及代码示例
- PHP Ds\Set last()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js pan()用法及代码示例
- p5.js value()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- PHP Ds\Set contains()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- d3.js lch()用法及代码示例
- d3.js d3.max()用法及代码示例
- p5.js hue()用法及代码示例
- p5.js min()用法及代码示例
- p5.js red()用法及代码示例
注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 D3.js brush.move() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。