以下此代码是Jason Davies的WordCloud示例。 我想插入一个固定字体大小的数组并随机集成。
e.g:
fontSize = [20,35,50,60,83,90];
我想要修复,如上所述(不是范围[x,x]),如下所示:
var fontSize = d3.scale.log().range([20, 90]);
有人知道如何实施它。
对不起,也许这是一个愚蠢的问题,不幸的是还是初学者。
<script>
var fill = d3.scale.category20();
d3.layout.cloud().size([800, 800])
.words([
"Hello", "world", "normally", "you", "want", "more", "words",
"than", "this"].map(function(d) {
return {text: d, size: 10 + Math.random() * 90};
}))
.rotate(function() { return ~~(Math.random() * 2) * 90; })
.font("Impact")
.fontSize(function(d) { return d.size; })
.on("end", draw)
.start();
function draw(words) {
d3.select("body").append("svg")
.attr("width", 800)
.attr("height", 800)
.append("g")
.attr("transform", "translate(400,400)")
.selectAll("text")
.data(words)
.enter().append("text")
.style("font-size", function(d) { return d.size + "px"; })
.style("font-family", "Impact")
.style("fill", function(d, i) { return fill(i); })
.attr("text-anchor", "middle")
.attr("transform", function(d) {
return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")";
})
.text(function(d) { return d.text; });
}
</script>
谢谢!
答案 0 :(得分:1)
您需要做的就是为您想要的单词修复这些大小,而不是随机生成它们。您可以将它们附加到具有随机大小的数组中:
var words = ["Hello", "world", "normally", "you", "want", "more", "words",
"than", "this"].map(function(d) {
return {text: d, size: 10 + Math.random() * 90};
};
words.push({text: "foo", size: 20});
words.push(...);
其余代码根本不需要任何修改。您发布的代码不使用任何比例,因此您生成和指定的字体大小是它实际使用的字体大小。