我想在d3js

时间:2017-05-12 11:25:55

标签: javascript d3.js

我的图表基于以下示例:

https://bl.ocks.org/kerryrodden/7090426

我想调整面包屑多边形的大小,以便增加宽度。这是我从原来的改变 -

entering.append("svg:polygon")
      .attr("points", breadcrumbPoints)
      .attr("width",500)
      .style("fill", function(d) { return colors[d.name]; });

  entering.append("svg:text")
      .attr("x", (b.w + b.t) / 2)
      .attr("y", b.h / 2)
      .attr("dy", "0.35em")
      .attr("text-anchor", "middle")
      .text(function(d) { return d.name; });

我也附上了screnshot。 PS:我添加了一个宽度属性,但它没有成功。请帮忙。 I have attached the image showing the need for increasing the width of the breadcrumb

0 个答案:

没有答案