Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add minor adjustments on y axis label to prevent overlapping #123

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/CentileChart/CentileChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,14 @@ function CentileChart({
<VictoryAxis
minDomain={0}
label={yAxisLabel(measurementMethod, false)}
axisLabelComponent={
<VictoryLabel
dx={0}
// adjust label margins relatively to font size of yAxis text to prevent overlapping
dy={(styles.yAxis.tickLabels.fontSize - 5) * -1}
style={styles.yAxis.axisLabel}
/>
}
style={styles.yAxis}
dependentAxis
/>
Expand Down
8 changes: 8 additions & 0 deletions src/SDSChart/SDSChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,14 @@ const SDSChart: React.FC<SDSChartProps> = (
<VictoryAxis
domain={{ y: [newLowerY, newUpperY] }}
label={yAxisLabel(measurementMethod, true)}
axisLabelComponent={
<VictoryLabel
dx={0}
// adjust label margins relatively to font size of yAxis text to prevent overlapping
dy={(styles.yAxis.tickLabels.fontSize - 5) * -1}
style={styles.yAxis.axisLabel}
/>
}
tickValues={[
-5.33, -4.67, -4.0, -3.33, -2.67, -2.0, -1.33, -0.67, 0, 0.67, 1.33, 2.0, 2.67, 3.33,
4.0, 4.67, 5.33,
Expand Down