Open
Description
- When using any sort of plot, y-label is rotated, which means upside down.
- Also, padding is not correctly set up, depending solution
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)
Metadata
Assignees
Labels
No labels
Activity