Skip to content

Instantly share code, notes, and snippets.

@roundrobin
Created June 28, 2012 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roundrobin/3008545 to your computer and use it in GitHub Desktop.
Save roundrobin/3008545 to your computer and use it in GitHub Desktop.
just another inlet to tributary
var type = ["linear", "step-before",
"step-after", "basis",
"basis-open", "basis-closed",
"bundle", "cardinal",
"cardinal-open", "cardinal-closed",
"monotone"];
var line = d3.svg.line()
.x(function(d) { return d.x; })
.y(function(d) { return d.y; })
.interpolate(type[3]);
var data1 = [{x:1,y:20},
{x:32,y:265},
{x:100,y:100},
{x:281,y:60},
{x:500,y:160}];
g.selectAll("path")
.data(data1)
.enter().append("svg:path")
.attr("d", function(d) { return line.tension(d)(data1); })
.transition()
.duration(1000)
.attr('stroke',"#1949C5")
.attr('stroke-width',38);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment