- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个包含散点图和折线图的 D3 可视化。它们共享一个 x 轴,但每个都有自己的 y 轴。我的问题涉及如何正确实现画笔并更新两个 y 轴。
如您所见,y 轴最初是正确的,并且在关闭画笔后再次正确。然而,在“刷牙”期间,两个 y 轴都设置为“左”轴。当我在这里设置画笔时,我明白了为什么会发生这种情况:
brush = d3.svg.brush()
.x(brushFilterXScale)
.y(brushFilterTransactionsYScale)
.on('brush', brushed);
我还有一个 brushFilterBalanceYScale
,它是右侧轴的比例。我的问题是如何将这两个比例传递给 brush
以便我可以正确更新每个 y 轴?
最佳答案
我不知道有什么直接的方法可以做到这一点。但是,您可以在 brush
事件中反向映射它:
function brushed() {
var extent = brush.extent(), //<-- the extent
yDomain = [extent[0][1], extent[1][1]]; //<-- the y domain of the extent
y2.domain(
[
y2Brush.invert(yBrush(yDomain[0])), //<-- take the yDomain start, get it's pixel position, then invert that back into the domain of the y2Brush
y2Brush.invert(yBrush(yDomain[1]))
]
);
这是一个工作示例:
<!DOCTYPE html>
<meta charset="utf-8">
<style>
svg {
font: 10px sans-serif;
}
.line {
fill: none;
stroke: steelblue;
clip-path: url(#clip);
}
circle {
clip-path: url(#clip);
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.brush .extent {
stroke: #fff;
fill-opacity: .125;
shape-rendering: crispEdges;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var margin = {
top: 10,
right: 40,
bottom: 100,
left: 40
},
margin2 = {
top: 430,
right: 40,
bottom: 20,
left: 40
},
width = 500 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom,
height2 = 500 - margin2.top - margin2.bottom;
var x = d3.scale.linear().range([0, width])
y = d3.scale.linear().range([height, 0]),
y2 = d3.scale.linear().range([height, 0]),
xBrush = d3.scale.linear().range([0,width]),
yBrush = d3.scale.linear().range([height2, 0]),
y2Brush = d3.scale.linear().range([height2, 0]);
var xAxis = d3.svg.axis().scale(x).orient("bottom"),
yAxis = d3.svg.axis().scale(y).orient("left"),
yAxis2 = d3.svg.axis().scale(y2).orient("right"),
yAxisBrush = d3.svg.axis().scale(yBrush).orient("bottom");
xAxisBrush = d3.svg.axis().scale(xBrush).orient("bottom");
var brush = d3.svg.brush()
.x(xBrush)
.y(yBrush)
.on("brush", brushed);
var line = d3.svg.line()
.interpolate("monotone")
.x(function(d) {
return x(d.x);
})
.y(function(d) {
return y(d.y);
});
var lineBrush = d3.svg.line()
.interpolate("monotone")
.x(function(d) {
return x(d.x);
})
.y(function(d) {
return yBrush(d.y);
});
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom);
svg.append("defs").append("clipPath")
.attr("id", "clip")
.append("rect")
.attr("width", width)
.attr("height", height);
var focus = svg.append("g")
.attr("class", "focus")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var context = svg.append("g")
.attr("class", "context")
.attr("transform", "translate(" + margin2.left + "," + margin2.top + ")");
var data1 = [],
data2 = [];
for (var i = 0; i < 100; i++) {
data1.push({
x: i,
y: Math.random() * 10
});
if (i % 3 === 0){
data2.push({
x: i,
y: Math.random() * 100
});
}
}
x.domain([0,100]);
y.domain([0, d3.max(data1.map(function(d) {
return d.y;
}))]);
y2.domain([0, d3.max(data2.map(function(d) {
return d.y;
}))]);
xBrush.domain(x.domain());
yBrush.domain(y.domain());
y2Brush.domain(y2.domain());
focus.append("path")
.datum(data1)
.attr("class", "line")
.attr("d", line);
var scatter = focus.append("g")
.selectAll("circle")
.data(data2);
scatter
.enter()
.append("circle")
.attr("cx", function(d){
return x(d.x);
})
.attr("cy", function(d){
return y2(d.y);
})
.attr("r", function(d){
d.r = Math.random() * 20;
return d.r;
})
.style("fill", "orange")
.style("opacity", "0.5");
focus.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
focus.append("g")
.attr("class", "y axis")
.call(yAxis);
focus.append("g")
.attr("transform", "translate(" + width + " ,0)")
.attr("class", "y2 axis")
.call(yAxis2);
context.append("path")
.datum(data1)
.attr("class", "line")
.attr("d", lineBrush);
context.append("g")
.selectAll("circle")
.data(data2)
.enter()
.append("circle")
.attr("cx", function(d){
return x(d.x);
})
.attr("cy", function(d){
return y2Brush(d.y);
})
.attr("r", function(d){
return d.r * 0.25;
})
.style("fill", "orange")
.style("opacity", "0.5");
context.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height2 + ")")
.call(xAxisBrush);
context.append("g")
.attr("class", "x brush")
.call(brush)
.selectAll("rect")
.attr("y", -6)
.attr("height", height2 + 7);
function brushed() {
var extent = brush.extent(),
yDomain = [extent[0][1], extent[1][1]];
y2.domain([y2Brush.invert(yBrush(yDomain[0])), y2Brush.invert(yBrush(yDomain[1]))]);
x.domain(brush.empty() ? xBrush.domain() : [extent[0][0], extent[1][0]]);
y.domain(brush.empty() ? yBrush.domain() : yDomain);
scatter
.attr("cx", function(d){
return x(d.x);
})
.attr("cy", function(d){
return y2(d.y);
})
focus.select(".line").attr("d", line);
focus.select(".x.axis").call(xAxis);
focus.select(".y.axis").call(yAxis);
focus.select(".y2.axis").call(yAxis2);
}
</script>
关于javascript - 使用具有多个 y 轴的 D3 画笔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35587712/
我正在尝试弄清楚如何让 d3 画笔创建的矩形(尤其是事件矩形)响应点击事件。最终,我想单击此对象调出一个菜单,但我似乎无法获取 rect 元素来捕获事件。 我试过下面的代码: var selector
我需要创建一个干净光滑的不透明画笔。 这是我需要的一个绘图线示例: 我得到的第二张图片: 虽然我移动光标的速度更快,但绘图线上的圆圈却变少了 var el = document.getElem
两个设备上下文 (DC) 可以共享一个 GDI 对象,例如画笔或笔吗? 最佳答案 SelectObject 的文档提到一次不能将位图选择到一个以上的 DC 中。 本质上这是因为 GDI 操作可以写入位
在应用程序中组织资源文件的最佳方式是什么?目前在我的应用程序中,我的资源添加到具有以下结构的 ResourceLib 项目中: 颜色 [文件夹] ColorTheme1.xaml ColorTheme
我尝试使用这个插件https://github.com/tcoupin/leaflet-paintpolygon用于多点圆形图像注释。但由于其中使用的库中存在错误,该插件无法正常工作。在传单或其他 J
我目前正在 Mike Bostock 的 Brush & Zoom 工作例如,尽管我没有在 svg 上覆盖一个矩形对象,而是将它附加到我的图表上,这样我仍然可以使用鼠标悬停事件和诸如此类的东西。 我很
我正在使用 D3js v4。我想要实现的是根据 this 结合画笔和缩放行为单击以重新居中画笔的示例,其中单击后画笔会居中,并且画笔边界会以平滑过渡变圆。这是我的fiddle到目前为止。 我的问题是函
我想使用 D3.js 画笔来允许用户在轴上选择一系列值。默认情况下,在画笔外部单击会将其清除,因此不会选择任何范围。 但是,我想调整此行为,以便在画笔外部单击不会改变画笔范围。实际上,应该没有办法清除
我正在尝试解决the following problem . 输入 输入以整数T(≤100)开头,表示测试用例的数量。 每个案例都以空行开头。下一行包含一个整数N(1≤N≤1000),表示有N个学生。
我创建了一个包含散点图和折线图的 D3 可视化。它们共享一个 x 轴,但每个都有自己的 y 轴。我的问题涉及如何正确实现画笔并更新两个 y 轴。 如您所见,y 轴最初是正确的,并且在关闭画笔后再次正确
是否有任何框架(可能是 openCV 中的一些方法)或关于如何在用户选择的区域中剪切图像的一部分并用图像的其他部分填充它的想法?这是例子: User selected area with house
我正在开发这个 iso 网格游戏(更准确地说:二轴投影,在典型的菱形布局中进行索引)并且想要实现圆形画笔来在我的 map 上绘制瓷砖,就像在任何图像编辑软件中一样。我从 Midpoint Circle
我使用ajax从主页调用html文件。对于主页,语法荧光笔工作正常。 但是当我在 ajax 函数中从主页调用第二个 html 页面时,语法荧光笔不起作用。 以下是ajax函数; $(document)
我需要将典型的手指绘图添加到应用中。 (通常....选择颜色、删除、厚度 - 就像您在制作的每个应用程序中看到的那样。) 很难相信我必须从头开始编程,在这个时代? 很难相信没有通用的解决方案吗? 我能
我是一名优秀的程序员,十分优秀!