This is a D3 version 4 remake of Structuring D3 code with constructor functions.
Last active
August 2, 2016 19:35
-
-
Save ejb/4d73f36217957b49dff2370bcc378568 to your computer and use it in GitHub Desktop.
Structuring D3 v4 code with constructor functions
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
license: mit |
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 Chart = function(opts) { | |
// load in arguments from config object | |
this.data = opts.data; | |
this.element = opts.element; | |
// create the chart | |
this.draw(); | |
} | |
Chart.prototype.draw = function() { | |
// define width, height and margin | |
this.width = this.element.offsetWidth; | |
this.height = this.width / 2; | |
this.margin = { | |
top: 20, | |
right: 75, | |
bottom: 45, | |
left: 50 | |
}; | |
// set up parent element and SVG | |
this.element.innerHTML = ''; | |
var svg = d3.select(this.element).append('svg'); | |
svg.attr('width', this.width); | |
svg.attr('height', this.height); | |
// we'll actually be appending to a <g> element | |
this.plot = svg.append('g') | |
.attr('transform','translate('+this.margin.left+','+this.margin.top+')'); | |
// create the other stuff | |
this.createScales(); | |
this.addAxes(); | |
this.addLine(); | |
} | |
Chart.prototype.createScales = function(){ | |
// shorthand to save typing later | |
var m = this.margin; | |
// calculate max and min for data | |
var xExtent = d3.extent(this.data,function(d,i) { | |
return d[0]; | |
}); | |
var yExtent = d3.extent(this.data,function(d,i) { | |
return d[1]; | |
}); | |
// force zero baseline if all data points are positive | |
if (yExtent[0] > 0) { yExtent[0] = 0; }; | |
this.xScale = d3.scaleTime() | |
.range([0, this.width-m.right]) | |
.domain(xExtent); | |
this.yScale = d3.scaleLinear() | |
.range([this.height-(m.top+m.bottom), 0]) | |
.domain(yExtent); | |
} | |
Chart.prototype.addAxes = function(){ | |
var m = this.margin; | |
// create and append axis elements | |
// this is all pretty straightforward D3 stuff | |
var xAxis = d3.axisBottom() | |
.scale(this.xScale) | |
.ticks(d3.timeMonth.every(1)); | |
var yAxis = d3.axisLeft() | |
.scale(this.yScale) | |
.tickFormat(d3.format("d")); | |
this.plot.append("g") | |
.attr("class", "x axis") | |
.attr("transform", "translate(0," + (this.height-(m.top+m.bottom)) + ")") | |
.call(xAxis); | |
this.plot.append("g") | |
.attr("class", "y axis") | |
.call(yAxis) | |
} | |
Chart.prototype.addLine = function(){ | |
// need to load `this` into `_this`... | |
var _this = this; | |
var line = d3.line() | |
.x(function(d) { | |
// ... so we can access it here | |
return _this.xScale(d[0]); | |
}) | |
.y(function(d) { | |
return _this.yScale(d[1]); | |
}); | |
this.plot.append('path') | |
// use data stored in `this` | |
.datum(this.data) | |
.classed('line',true) | |
.attr('d',line) | |
// set stroke to specified color, or default to red | |
.style('stroke', this.lineColor || 'red'); | |
} | |
// the following are "public methods" | |
// which can be used by code outside of this file | |
Chart.prototype.setColor = function(newColor) { | |
this.plot.select('.line') | |
.style('stroke',newColor); | |
// store for use when redrawing | |
this.lineColor = newColor; | |
} | |
Chart.prototype.setData = function(newData) { | |
this.data = newData; | |
// full redraw needed | |
this.draw(); | |
} |
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
<!-- load in D3 and Chart constructor scripts --> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.0/d3.min.js"></script> | |
<script src="chart.js"></script> | |
<style> | |
/* a little bit of CSS to make the chart readable */ | |
.line { | |
fill: none; | |
stroke-width: 4px; | |
} | |
.axis path, .tick line { | |
fill: none; | |
stroke: #333; | |
} | |
</style> | |
<!-- here's the div our chart will be injected into --> | |
<div class="chart-container" style="max-width: 1000px;"></div> | |
<!-- these will be made useful in the script below --> | |
<button class="color" data-color="red">red line</button> | |
<button class="color" data-color="green">green line</button> | |
<button class="color" data-color="blue">blue line</button> | |
<button class="data">change data</button> | |
<script> | |
// create new chart using Chart constructor | |
var chart = new Chart({ | |
element: document.querySelector('.chart-container'), | |
data: [ | |
[new Date(2016,0,1), 10], | |
[new Date(2016,1,1), 70], | |
[new Date(2016,2,1), 30], | |
[new Date(2016,3,1), 10], | |
[new Date(2016,4,1), 40] | |
] | |
}); | |
// change line colour on click | |
d3.selectAll('button.color').on('click', function(){ | |
var color = d3.select(this).text().split(' ')[0]; | |
chart.setColor( color ); | |
}); | |
// change data on click to something randomly-generated | |
d3.selectAll('button.data').on('click', function(){ | |
chart.setData([ | |
[new Date(2016,0,1), Math.random()*100], | |
[new Date(2016,1,1), Math.random()*100], | |
[new Date(2016,2,1), Math.random()*100], | |
[new Date(2016,3,1), Math.random()*100], | |
[new Date(2016,4,1), Math.random()*100] | |
]); | |
}); | |
// redraw chart on each resize | |
// in a real-world example, it might be worth ‘throttling’ this | |
// more info: http://sampsonblog.com/749/simple-throttle-function | |
d3.select(window).on('resize', function(){ | |
chart.draw(); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment