diff --git a/superset/assets/visualizations/histogram.js b/superset/assets/visualizations/histogram.js index b4bf6fcc746d..2f292311102c 100644 --- a/superset/assets/visualizations/histogram.js +++ b/superset/assets/visualizations/histogram.js @@ -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;