You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SED-Stack/public/js/app.js

15 lines
234 B

// Initialize app
var WIDTH = 800;
var HEIGHT = 600;
var MAX_DISTANCE = 5;
var MIN_DISTANCE = 0;
var MIN_DATE = new Date('2016-1-1');
var MAX_DATE = new Date('2017-1-1');
d3.select('svg').style({
height: HEIGHT,
width: WIDTH
});