Skip to content

Commit

Permalink
histograms: fixup left margin assigment (apache#4532)
Browse files Browse the repository at this point in the history
  • Loading branch information
xrmx authored and michellethomas committed May 23, 2018
1 parent 547d214 commit fca96e4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions superset/assets/visualizations/histogram.js
Expand Up @@ -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;
Expand Down

0 comments on commit fca96e4

Please sign in to comment.