Created
December 5, 2022 07:19
-
-
Save brian-codes/2263643770146553118a52d6bdf52528 to your computer and use it in GitHub Desktop.
Solution to overlapping labels
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var computeArcLink = function computeArcLink(arc, offset, diagonalLength, straightLength) { | |
var centerAngle = getNormalizedAngle(arc.startAngle + (arc.endAngle - arc.startAngle) / 2 - Math.PI / 2); | |
const { angleDeg } = arc; | |
const absSin = Math.abs(Math.sin(centerAngle)); | |
const offsetReducer = angleDeg < 10 ? 1 : 2; | |
const baseOffset = radiansToDegrees(Math.asin(absSin)) / offsetReducer; | |
const linkDiagonalLengthOffset = baseOffset * absSin; | |
var point0 = positionFromAngle(centerAngle, arc.outerRadius); | |
var point1 = positionFromAngle( | |
centerAngle, | |
arc.outerRadius + linkDiagonalLengthOffset + offset + diagonalLength | |
); |
We found a workaround for legend overlapping. We built our own legend with corresponding colors from the chart. So far it is much more responsive and we think will provide a good solution for us.
@mtusman feel free to take the code and create a PR
@Viktoriya-D so you're just avoiding the labels altogether?
Yes. For the most part. Legend allows us to make the chart bigger. We will see if it continues to work well.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Same here, this is causing a big problem for us. Getting this fixed would be a huge relief!