From d9717e60c9d82ea8a7d1d7a21d5c85be2125e0fd Mon Sep 17 00:00:00 2001 From: Gregory Eremin Date: Sun, 10 Jan 2016 19:47:08 +0300 Subject: [PATCH] Draw box plot x axis with a lighter color --- dashboard/css/app.css | 3 +++ dashboard/js/app.jsx | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/dashboard/css/app.css b/dashboard/css/app.css index bac1e32..7808121 100644 --- a/dashboard/css/app.css +++ b/dashboard/css/app.css @@ -73,6 +73,9 @@ body { .axis { stroke: #888; } + .axis.light { + stroke: #ddd; + } .arrow { stroke: #888; fill: #888; diff --git a/dashboard/js/app.jsx b/dashboard/js/app.jsx index fae61cb..df35b79 100644 --- a/dashboard/js/app.jsx +++ b/dashboard/js/app.jsx @@ -221,15 +221,15 @@ var BoxPlot = React.createClass({
Speed - {this.props.points.map(renderBox)} {max.toFixed(1)} 0 - + now {xlabels} + {this.props.points.map(renderBox)}
);