histograms: fixup left margin assigment (#4532)
This commit is contained in:
parent
1647004486
commit
f9881101ee
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue