Skip to content

Commit

Permalink
fix 🐛: y label cutoff
Browse files Browse the repository at this point in the history
  • Loading branch information
squiles committed Dec 3, 2024
1 parent 0702e19 commit 1321900
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/charts/shared/axis-height-band.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const AxisHeightBand = () => {
hasNegativeValues ? gridColor : domainColor
);
g.selectAll(".tick text")
.attr("x", 0)
.attr("x", -fontSize)
.attr("font-size", fontSize)
.attr("font-family", fontFamily)
.attr("fill", labelColor)
Expand Down

0 comments on commit 1321900

Please sign in to comment.