Skip to content

Commit

Permalink
Fix fitWithPointLabels calculation in radialLinear scale (#5963)
Browse files Browse the repository at this point in the history
  • Loading branch information
nagix authored and simonbrunel committed Jan 7, 2019
1 parent b7139db commit 934ce24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scales/scale.radialLinear.js
Expand Up @@ -141,7 +141,7 @@ function fitWithPointLabels(scale) {
l: 0,
r: scale.width,
t: 0,
b: scale.height
b: scale.height - scale.paddingTop
};
var furthestAngles = {};
var i, textSize, pointPosition;
Expand Down

0 comments on commit 934ce24

Please sign in to comment.