我有一个非常简单的页面和任务,但令我沮丧的是,我无法让我的文字采用正确的max-width
。我看过read width of d3 text element,Whats the CSS to make something go to the next line in the page?等等,但我仍然无法弄明白。
而不是svg文本很好地流向下一行,它在页面上蔓延,直到它超出界限。这是我的css和代码
var svg = d3.select('body').append('svg')
.attr('width', 300)
.attr('height', 200);
var textG = svg.append('g');
textG.append('text')
.attr('x', 20)
.attr('y', 30)
.attr('class', 'myText')
.text('This line should be about three to four lines long, but because I am so stupid I cannot make it do what I want it to do. Woe is me.');

.myText {
font-size: 1.3em;
fill: gray;
width:10%;
max-width:10%;
display:block;
}

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="//d3js.org/d3.v3.min.js"></script>
</head>
<body>
&#13;
问题:我可以从CSS方面或JS方面做些什么来使我的svg文本采用最大宽度样式规则?我希望它能够进入下一行而不是在第一行的范围内无限制地前进。
答案 0 :(得分:2)
您可以做的是将字符串拆分为三个或四个部分,然后在<tspan>
元素中使用多个<text>
元素,而不是将整个文本插入<text>
。
另一种解决方案是使用<foreignObject>
。
这是一个小提琴:
var svg = d3.select('body').append('svg')
.attr('width', 350)
.attr('height', 500);
var textG = svg.append('g');
var fullTxt = 'This line should be about three to four^lines long, but because I am still^learning stuff, I cannot make it do^what I want it to do. Woe is me.'
var b = fullTxt.split('^');
textG.append('text')
.attr('x', 20)
.attr('y', 30)
.attr('class', 'myText')
.selectAll('tspan').data(b)
.enter().append('tspan')
.text(function(d) {
return d;
})
.attr("textLength", 250)
.attr("lengthAdjust", "spacingAndGlyphs")
.attr('dy', '1em').attr('x', '15');
.myText {
font-size: 1.3em;
fill: gray;
width: 10%;
max-width: 10%;
display: block;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.11/d3.min.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="//d3js.org/d3.v3.min.js"></script>
</head>
<body>