We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4908251 commit f1eb441Copy full SHA for f1eb441
src/app/pages/circular-heatmap/circular-heatmap.component.ts
@@ -253,7 +253,7 @@ export class CircularHeatmapComponent implements OnInit {
253
left: marginAll,
254
};
255
var bbWidth = imageWidth - Math.max(margin.left + margin.right, margin.top + margin.bottom) * 2; // bounding box
256
- var segmentLabelHeight = bbWidth * 0.0155; // Fuzzy number, to match the longest label within one sector
+ var segmentLabelHeight = bbWidth * 0.0166; // Magic fudge number. to match the longest label within one sector
257
var outerRadius = bbWidth / 2 - segmentLabelHeight;
258
var innerRadius = outerRadius / 5;
259
var segmentHeight = (outerRadius - innerRadius) / maxLevel;
0 commit comments