D3.js Template
by Simon060694
CSS
* {
margin: 0;
padding: 0;
border: 0;
}
body {
background: #ffd;
}
JavaScript
var lineData = [ { "x": 1, "y": 20}, { "x": 180, "y": 80},
{ "x": 331, "y": 240} ];
var lineFunction = d3.svg.line()
.x(function(d) { return d.x; })
.y(function(d) { return d.y; })
.interpolate("cardinal");
var svg = d3.select("body").append("svg")
.attr("width", 500)
.attr("height", 300);
var defs = svg.append("defs");
var gradient = defs.append("linearGradient")
.attr("id", "svgGradient")
.attr("x1", "0%")
.attr("x2", "100%")
.attr("y1", "0%")
.attr("y2", "100%");
gradient.append("stop")
.attr('class', 'start')
.attr("offset", "0%")
.attr("stop-color", "red")
.attr("stop-opacity", 1);
gradient.append("stop")
.attr('class', 'end')
.attr("offset", "100%")
.attr("stop-color", "blue")
.attr("stop-opacity", 1);
var line = svg.append("path")
.attr("d", lineFunction(lineData))
.attr("stroke-width", 150)
.attr("stroke", "url(#svgGradient)")
.attr("fill", "none");