Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
  <script src="http://d3js.org/d3.v3.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="visualization"></div>
</body>
</html>
 
$(function(){
  var circle, circleWidthData, colors, data, div, height, r, svg, width;
  
  width = 600;
  height = 600;
  r = 30;
  
  colors = ["green", "red", "orange", "blue", "yellow", "cyan", "grey", "magenta", "purple", "brown", "black"];
  
  data = d3.range(0, 10).map(function(d) {
    return {
      cx: 0 | Math.random() * width,
      cy: 0 | Math.random() * height,
      r: 0 | (Math.random() * r + r)
    };
  });
  
  div = d3.select('div#visualization');
  
  svg = div.append('svg');
  
  svg.attr('width', width).attr('height', height);
  
  circleInSVG = svg.selectAll();
  
  circleSelectionWithData = circleInSVG.data(data);
  
  newCircleSelectionWithData = circleSelectionWithData.enter();
  
  circlesInNewCircleSelectionWithData = newCircleSelectionWithData.append('circle');
  
  circlesInNewCircleSelectionWithData.attr(
    'r', 20
  ).attr('cx', function(d) {
    return d.cx;  
  }).attr('cy', function(d) {
    return d.cy;
  }).attr('fill', function(d, idx) {
    return colors[idx % colors.length];
  }).style('opacity', 0.6);
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
futoasepro
0viewers