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

fix: yAxis label collides with yAxis name #2471 #2502

Merged
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
fix: yAxis label collides with yAxis name #2471
gmuralidharreddy committed Jan 24, 2024
commit 5980ec929ee01ca905421fa15496e08616011ecc
Original file line number Diff line number Diff line change
@@ -20,5 +20,6 @@ export const convertYAxis = (
formatter: (value: number) => `${round(value, significantDigits)}`,
},
nameLocation: 'middle',
nameGap: 30,
//TODO: Increased nameGap to solve label collides with y-axis issue, but the issue is in echarts and waiting for this(https://github.com/apache/echarts/issues/9265) CR to be merged from echart team.
nameGap: 38,
});