[ Launch: test ] cd55688858eebc79255b by michaeltroy
[ Launch: test ] 4653053 by enjalot
[ Launch: test ] 4652017 by enjalot
[ Launch: test ] 4582399 by enjalot
-
-
Save michaeltroy/cd55688858eebc79255b to your computer and use it in GitHub Desktop.
test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"description":"test","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"tab":"edit","display_percent":0.7,"thumbnail":"http://i.imgur.com/Z4ghHZY.png","fullscreen":false,"ajax-caching":true} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var data = [[1,1],[2,3],[3,2],[4,4]]; | |
var svg = d3.select("svg"); | |
var margin = {top: 19, right: 20, bottom: 30, left: 3}, | |
width = 385 - margin.left - margin.right, | |
height = 309 - margin.top - margin.bottom; | |
var x = d3.time.scale().range([0, width]); | |
var y = d3.scale.linear().range([height, 0]); | |
var xAxis = d3.svg.axis().scale(x).orient("bottom"); | |
var yAxis = d3.svg.axis().scale(y).orient("left"); | |
var area = d3.svg.area() | |
.x(function(d) { return x(d.x); }) | |
.y0(height) | |
.y1(function(d) { return y(d.y); }); | |
svg.attr("width", width + margin.left + margin.right) | |
.attr("height", height + margin.top + margin.bottom) | |
.append("g") | |
.attr("transform", "translate(" + margin.left + "," + margin.top + ")"); | |
var dataCallback = function(d) { | |
d.x = +d[0]; | |
d.y = +d[1]; | |
}; | |
data.forEach(dataCallback); | |
x.domain(d3.extent(data, function(d) { return d.x; })); | |
y.domain([0, d3.max(data, function(d) { return d.y; })]); | |
svg.append("path") | |
.data([data]) | |
.attr("class", "area") | |
.attr("d", area); | |
svg.append("g") | |
.attr("class", "x axis") | |
.attr("transform", "translate(0," + height + ")") | |
.call(xAxis); | |
svg.append("g") | |
.attr("class", "y axis") | |
.call(yAxis) | |
.append("text") | |
.attr("transform", "rotate(-90)") | |
.attr("y", 6) | |
.attr("dy", ".71em") | |
.style("text-anchor", "end") | |
.text("Number of Messages"); | |
d3.select('#chart').on("click", function() { | |
data.splice(0,1); | |
data.push([5,5]); | |
dataCallback(data[data.length - 1]); | |
x.domain(d3.extent(data, function(d) { return d.x; })); | |
y.domain([0, d3.max(data, function(d) { return d.y; })]); | |
svg.select("g.x.axis").call(xAxis); | |
svg.selectAll("path").data([data]) | |
.attr("d", area); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment