make parallel fixed width at 1200 for now

This commit is contained in:
Colin Megill
2017-11-26 23:17:14 -08:00
parent 546c7020cf
commit 9b045b1187
+2 -1
View File
@@ -1,9 +1,10 @@
import _ from "lodash";
const paddingRight = 120;
const continuousChartWidth = 1200;
export const margin = {top: 66, right: 110, bottom: 20, left: 60};
export const width = document.body.clientWidth - margin.left - margin.right - paddingRight;
export const width = continuousChartWidth - margin.left - margin.right - paddingRight;
export const height = 340 - margin.top - margin.bottom;
export const innerHeight = height - 2;