无法使用d3将矩形附加到SVG

时间:2016-04-02 05:30:06

标签: javascript angularjs d3.js svg

我在html体内的div中有一个SVG,我正在使用d3追加一个" rect"到这个SVG,但是没有生成矩形。

<script>
    //Select the SVG Container
      var svgContainer = d3.select("#svg_container");
      //Draw the Rectangle
      var rectangle = svgContainer.append("rect").attr("x", 10).attr("y", 10).attr("width", 50).attr("height", 100);

<svg id="svg_container" width="1000px" height="800px"</svg>

这是一个添加的傻瓜 - https://embed.plnkr.co/aNW8NtiRfS6FkSQMHtkB/

有助于生成&#34; rect&#34;将不胜感激。

1 个答案:

答案 0 :(得分:1)

您需要在加载库后加载script.js.

http://plnkr.co/edit/8qxmu5KpPZroGhB1odGK?p=preview

<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
    <script type="text/javascript" src="http://mbostock.github.com/d3/d3.js"></script>
    <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
    <script src="script.js"></script>
  </head>

  <body ng-app="MyApp">
      <div id="container" ng-controller="driversController">
            <div id="ElementPane" class="container">    
                <svg id="svg_container" width="1000px" height="800px"></svg>
            </div>
      </div>
  </body>
</html>