We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
for 1st issue, the simple change below fixed the problem for me - line 425 to 428
from
if ylabel: ylabel.y = int( y_next + (yextent - y_next) / 2. - ylabel.height / 2.) ylabel.angle = 90
to
if ylabel: ylabel.y = int( y_next + (yextent - y_next) / 2. - ylabel.height / 2.) ylabel.angle = 0
(needs padding change)
or
if ylabel: ylabel.y = int( y_next + (yextent - y_next) / 2. - ylabel.height / 2.) ylabel.angle = 45
(y label is rotated along axis)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
for 1st issue, the simple change below fixed the problem for me - line 425 to 428
from
to
(needs padding change)
or
(y label is rotated along axis)
The text was updated successfully, but these errors were encountered: