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 | |
); |
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
@Viktoriya-D so you're just avoiding the labels altogether?