Skip to content

Instantly share code, notes, and snippets.

@brian-codes
Created December 5, 2022 07:19
Show Gist options
  • Save brian-codes/2263643770146553118a52d6bdf52528 to your computer and use it in GitHub Desktop.
Save brian-codes/2263643770146553118a52d6bdf52528 to your computer and use it in GitHub Desktop.
Solution to overlapping labels
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
);
@Viktoriya-D
Copy link

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.

@brian-codes
Copy link
Author

@mtusman feel free to take the code and create a PR

@brian-codes
Copy link
Author

@Viktoriya-D so you're just avoiding the labels altogether?

@Viktoriya-D
Copy link

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