block by vicapow 8727599

dang...

Full Screen

index.html

<!doctype HTML>
<html ng-app="dang">
  <head>
    <script src="js/d3.v3.min.js"></script>
    <script src="js/angular.min.js"></script>
    <script src="js/dang.js"></script>
  </head>
  <body>
    <d3-bar type="stacked" data="data">
      <d3-axis orient="bottom" scale="xScale" ticks="10"></axis>
      <d3-axis orient="left" scale="yScale"></axis>
    </d3-bar>
    
    <d3-pie data="data"></d3-pie>
    
    <d3-donut data="data"></d3-donut>

    <d3-shatter data="data">
      <d3-axis orient="bottom" scale="xScale"></axis>
      <d3-axis orient="left" scale="yScale"></axis>
    </d3-shatter>

    <d3-line data="data">
      <d3-axis orient="bottom" scale="xScale"></axis>
      <d3-axis orient="left" scale="yScale"></axis>
    </d3-line>
  </body>
</html>