Skip to content

1) y label rotated 2) padding issue #29

Open
@musarra

Description

  1. When using any sort of plot, y-label is rotated, which means upside down.
  2. 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)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions