1

下面的代码是 Jason Davies 的 WordCloud 示例。我想插入一个具有固定字体大小的数组并随机集成它。

例如:

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>

谢谢!

4

1 回答 1

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(...);

其余代码根本不需要任何修改。您发布的代码不使用任何比例尺,因此您生成和指定的字体大小是它实际使用的字体大小。

于 2013-03-21T11:53:58.637 回答