Skip to content

Commit

Permalink
Fix: Avoid negative layout dimensions (#9027)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurkle committed May 5, 2021
1 parent f5c51af commit 1a1e677
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/core.layouts.js
Expand Up @@ -309,8 +309,8 @@ export default {
}

const padding = toPadding(chart.options.layout.padding);
const availableWidth = width - padding.width;
const availableHeight = height - padding.height;
const availableWidth = Math.max(width - padding.width, 0);
const availableHeight = Math.max(height - padding.height, 0);
const boxes = buildLayoutBoxes(chart.boxes);
const verticalBoxes = boxes.vertical;
const horizontalBoxes = boxes.horizontal;
Expand Down
27 changes: 27 additions & 0 deletions test/specs/scale.linear.tests.js
Expand Up @@ -1220,4 +1220,31 @@ describe('Linear Scale', function() {
expect(scale.getValueForPixel(end)).toBeCloseTo(min, 4);
expect(scale.getValueForPixel(start)).toBeCloseTo(max, 4);
});

it('should not throw errors when chart size is negative', function() {
function createChart() {
return window.acquireChart({
type: 'bar',
data: {
labels: [0, 1, 2, 3, 4, 5, 6, 7, '7+'],
datasets: [{
data: [29.05, 4, 15.69, 11.69, 2.84, 4, 0, 3.84, 4],
}],
},
options: {
plugins: false,
layout: {
padding: {top: 30, left: 1, right: 1, bottom: 1}
}
}
}, {
canvas: {
height: 0,
width: 0
}
});
}

expect(createChart).not.toThrow();
});
});

0 comments on commit 1a1e677

Please sign in to comment.