gpt4 book ai didi

javascript - 使用 SVG 和 d3.js 创建滚动条

转载 作者:数据小太阳 更新时间:2023-10-29 04:49:31 29 4
gpt4 key购买 nike

现在我已经使用 d3 创建了几个“框”,它们只是带有文本的 SVG 矩形:

var canvas = d3.select("body").append("svg")
.attr("width", 800)
.attr("height", 500);


//specifies drawing area for each box
var boxes = canvas.selectAll("rect")
.data(classData)
.enter();

boxes.append("rect")
.attr("width", boxWidth)
.attr("height", boxHeight)
.attr("fill", boxColor)
.attr("x", function (d, i) { return i * 2 * boxWidth });


text.append("text")
.attr("fill", textColor)
.attr("x", function (d, i)
{ return i * 2 * boxWidth + 5 })
.attr("y", 20)
.style("width", "20px")
.style("overflow-x", "scroll")
.text(function(d) {return d.name});

enter image description here

现在我想做的是当文本超出框的边界时向每个框添加滚动条。我见过几个创建 div 并使用 CSS 处理溢出的示例。但是,我会有多个(可变的)框,我不确定如何去做。

有什么建议吗?

-- 更新--

我能够通过将 svg 元素附加到使用 CSS 样式控制滚动的 div 来显示滚动条。

.container {
height: 225px;
width: 175px;
border:2px solid #000;
overflow-y: scroll;
overflow-x: hidden;
}

svg {
display: block;
width: 200%;
height: 200%;
}

但是,滚动似乎只受 svg 元素的宽度和高度百分比的影响,而不是 div 中绘制的 rect 元素的影响。换句话说,如果矩形太大,您仍然无法滚动查看所有内容,除非您增加 svg 元素的宽度和高度。

有没有一种方法可以让 div 根据其中绘制的内容滚动?或者我应该尝试以某种方式计算和更改 svg 元素的宽度和高度属性吗?

view the code here

最佳答案

尝试添加 viewBox svg 属性:

var rectangle = container.append("svg")
.attr("viewBox", "0,0,150,420")
.append("rect")
.attr("width", 150)
.attr("height", 420)
.attr("fill", "steelblue")
.attr("x", 0)
.attr("y", 0);

jsfiddle

关于javascript - 使用 SVG 和 d3.js 创建滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29869603/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com