Skip to content

Instantly share code, notes, and snippets.

@ejb
Last active July 18, 2019 15:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ejb/774b87bf0f7482599419d1e7da9ed918 to your computer and use it in GitHub Desktop.
Save ejb/774b87bf0f7482599419d1e7da9ed918 to your computer and use it in GitHub Desktop.
Structuring D3 code with ES6 classes
license: mit

This is an example of structuring D3 code using ES6 classes. For more information, see the accompanying blog post “A better way to structure D3 code”.

This example is written in ES6 and will only work in the latest versions of Chrome, Firefox and Safari.

class Chart {
constructor(opts) {
// load in arguments from config object
this.data = opts.data;
this.element = opts.element;
// create the chart
this.draw();
}
draw() {
// 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 = '';
const 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();
}
createScales() {
// shorthand to save typing later
const m = this.margin;
// calculate max and min for data
const xExtent = d3.extent(this.data, d => d[0]);
const yExtent = d3.extent(this.data, d => 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);
}
addAxes() {
const m = this.margin;
// create and append axis elements
// this is all pretty straightforward D3 stuff
const xAxis = d3.axisBottom()
.scale(this.xScale)
.ticks(d3.timeMonth);
const 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)
}
addLine() {
const line = d3.line()
.x(d => this.xScale(d[0]))
.y(d => 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
setColor(newColor) {
this.plot.select('.line')
.style('stroke', newColor);
// store for use when redrawing
this.lineColor = newColor;
}
setData(newData) {
this.data = newData;
// full redraw needed
this.draw();
}
}
<!-- load in D3 and Chart constructor scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.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
const 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(){
const color = d3.select(this).text().split(' ')[0];
chart.setColor( color );
});
// change data on click to something randomly-generated
d3.selectAll('button.data').on('click', () => {
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', () => chart.draw() );
</script>
@kashesandr
Copy link

kashesandr commented Nov 22, 2017

Hey! Thanks for the example!

It'd be better to the General Update Patterns here.

https://bl.ocks.org/mbostock/3808218
https://bl.ocks.org/mbostock/3808221
https://bl.ocks.org/mbostock/3808234

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment