Skip to content

Bugfix: Only add minimum margin-spacing for container referenced components #6616

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jun 1, 2023
1 change: 1 addition & 0 deletions draftlogs/6616_fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Ensure that only minimum margin spacing is added for container-referenced legends and colorbars [[#6616](https://github.com/plotly/plotly.js/pull/6616)]
32 changes: 23 additions & 9 deletions src/plots/plots.js
Original file line number Diff line number Diff line change
Expand Up @@ -2010,13 +2010,6 @@ plots.doAutoMargin = function(gd) {
var reservedMargins = {t: 0, b: 0, l: 0, r: 0};
var oldMargins = Lib.extendFlat({}, gs);

var margins = gd._fullLayout._reservedMargin;
for(var key in margins) {
for(var side in margins[key]) {
var val = margins[key][side];
reservedMargins[side] = Math.max(reservedMargins[side], val);
}
}
// adjust margins for outside components
// fullLayout.margin is the requested margin,
// fullLayout._size has margins and plotsize after adjustment
Expand All @@ -2029,11 +2022,18 @@ plots.doAutoMargin = function(gd) {
var minreducedwidth = fullLayout.minreducedwidth;
var minreducedheight = fullLayout.minreducedheight;

if(fullLayout.margin.autoexpand !== false) {
if(margin.autoexpand !== false) {
for(var k in pushMargin) {
if(!pushMarginIds[k]) delete pushMargin[k];
}

var margins = gd._fullLayout._reservedMargin;
for(var key in margins) {
for(var side in margins[key]) {
var val = margins[key][side];
reservedMargins[side] = Math.max(reservedMargins[side], val);
}
}
// fill in the requested margins
pushMargin.base = {
l: {val: 0, size: ml},
Expand All @@ -2042,9 +2042,23 @@ plots.doAutoMargin = function(gd) {
b: {val: 0, size: mb}
};


// make sure that the reservedMargin is the minimum needed
for(var s in reservedMargins) {
var autoMarginPush = 0;
for(var m in pushMargin) {
if(m !== 'base') {
if(isNumeric(pushMargin[m][s].size)) {
autoMarginPush = pushMargin[m][s].size > autoMarginPush ? pushMargin[m][s].size : autoMarginPush;
}
}
}
var extraMargin = Math.max(0, (margin[s] - autoMarginPush));
reservedMargins[s] = Math.max(0, reservedMargins[s] - extraMargin);
}

// now cycle through all the combinations of l and r
// (and t and b) to find the required margins

for(var k1 in pushMargin) {
var pushleft = pushMargin[k1].l || {};
var pushbottom = pushMargin[k1].b || {};
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions test/image/mocks/zz-container-colorbar-vertical-w-margin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"data": [
{
"colorbar": {
"orientation": "v",
"xref": "container",
"x": 1,
"thickness": 10,
"ticks": "outside",
"bgcolor": "rgba(255,255,0,0.5)",
"borderwidth": 4,
"bordercolor": "gray",
"title": {
"side": "top",
"text": "Colorbar<br>title",
"font": {
"size": 16
}
}
},
"z": [
[
1,
3,
5
],
[
4,
7,
10
],
[
7,
11,
14
]
],
"type": "heatmap"
}
],
"layout": {
"margin": {"l": 0, "r": 148, "t": 0, "b": 0},
"height": 300,
"width": 400,
"yaxis": {"automargin": true, "side": "right", "title": {"text": "Y-axis title"}},
"title": {"text": "Colorbar with `xref='container'` | vertical | margin", "automargin": true}
}
}