histograms: fixup left margin assigment (#4532)

This commit is contained in:
Riccardo Magliocchetti 2018-03-10 00:31:34 +01:00 committed by Maxime Beauchemin
parent 1647004486
commit f9881101ee
1 changed files with 1 additions and 2 deletions

View File

@ -13,12 +13,11 @@ function histogram(slice, payload) {
const draw = function () {
// Set Margins
const left = yAxisLabel ? 70 : 50;
const margin = {
top: 50,
right: 10,
bottom: 20,
left,
left: yAxisLabel ? 70 : 50,
};
const navBarHeight = 36;
const navBarBuffer = 10;