Skip to content

Commit

Permalink
Merge pull request #578 from Ferlab-Ste-Justine/chore/SJIP-1116
Browse files Browse the repository at this point in the history
doc(venn): SJIP-1116 update inner doc
  • Loading branch information
lflangis authored Feb 27, 2025
2 parents 3b61c40 + 96dad7b commit 04a2a9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/ui/src/components/Charts/Venn/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ const VennChart = ({
.attr('text-anchor', 'end')
.attr('class', styles.legend)
.text(LABELS[0]);
// Insert count of (Q₁)-(Q₂Q₃)
// Insert count of Q₁-(Q₂Q₃)
svg.append('text')
.attr('x', cx + Math.sin((Math.PI * 300) / 180) * 1.1 * radius * factor)
.attr('y', cy - Math.cos((Math.PI * 300) / 180) * 1.0 * radius * factor)
Expand Down Expand Up @@ -365,7 +365,7 @@ const VennChart = ({
.attr('text-anchor', 'start')
.attr('class', styles.legend)
.text(LABELS[1]);
// Insert count value of (Q₂)-(Q₁Q₃)
// Insert count value of Q₂-(Q₁Q₃)
svg.append('text')
.attr('x', cx + Math.sin((Math.PI * 60) / 180) * 1.1 * radius * factor)
.attr('y', cy - Math.cos((Math.PI * 60) / 180) * 1.0 * radius * factor)
Expand Down Expand Up @@ -475,7 +475,7 @@ const VennChart = ({
.attr('text-anchor', 'middle')
.attr('class', styles.legend)
.text(LABELS[2]);
// Insert count value of '(Q₃)-(Q₁∩Q₃)'
// Insert count value of 'Q₃-(Q₁∪Q₂)'
svg.append('text')
.attr('x', cx + Math.sin((Math.PI * 180) / 180) * 1.1 * radius * factor)
.attr('y', cy - Math.cos((Math.PI * 180) / 180) * 1.1 * radius * factor)
Expand Down

0 comments on commit 04a2a9d

Please sign in to comment.