Book Image

D3.js Quick Start Guide

By : Matthew Huntington
Book Image

D3.js Quick Start Guide

By: Matthew Huntington

Overview of this book

D3.js is a JavaScript library that allows you to create graphs and data visualizations in the browser with HTML, SVG, and CSS. This book will take you from the basics of D3.js, so that you can create your own interactive visualizations, to creating the most common graphs that you will encounter as a developer, scientist, statistician, or data scientist. The book begins with an overview of SVG, the basis for creating two-dimensional graphics in the browser. Once the reader has a firm understanding of SVG, we will tackle the basics of how to use D3.js to connect data to our SVG elements. We will start with a scatter plot that maps run data to circles on a graph, and expand our scatter plot to make it interactive. You will see how you can easily allow the users of your graph to create, edit, and delete run data by simply dragging and clicking the graph. Next, we will explore creating a bar graph, using external data from a mock API. After that, we will explore animations and motion with a bar graph, and use various physics-based forces to create a force-directed graph. Finally, we will look at how to use GeoJSON data to create a map.
Table of Contents (10 chapters)

Updating data after a drag

Now we're going to add functionality so that when the user releases the mouse button, the data for the run object associated with the circle being dragged gets updated.

First, let's create the callback function that will get called when the user releases the mouse button. Toward the bottom of the render() function declaration, add the following code just above var drag = function(datum){:

var dragEnd = function(datum){
var x = d3.event.x;
var y = d3.event.y;

var date = xScale.invert(x);
var distance = yScale.invert(y);

datum.date = formatTime(date);
datum.distance = distance;
createTable();
}

Now attach that function to dragBehavior so that it is called when the user stops dragging a circle. Look at the following code:

var dragBehavior = d3.drag()
.on('drag', drag);

Change it to this:

var dragBehavior = d3...