proplot-dev / proplot

🎨 A succinct matplotlib wrapper for making beautiful, publication-quality graphics
https://proplot.readthedocs.io
MIT License
1.07k stars 96 forks source link

ticks rotation does not work sometimes #420

Open kinyatoride opened 1 year ago

kinyatoride commented 1 year ago

Description

Hi, thanks for your great work as always.

I found that tick rotation does not work sometimes.

Steps to reproduce

import numpy as np
import proplot as pplt

fig, ax = pplt.subplots()

ax.format(
    xlim=(0, 20), xlocator=np.arange(0, 20, 2),
    xrotation=90,
)

test1

The tick label 10 is not rotated in this case.

Equivalent steps in matplotlib

import numpy as np
import matplotlib.pyplot as plt

fig, ax = plt.subplots()

ax.set_xlim(0, 20)
plt.xticks(np.arange(0, 20, 2), rotation=90)

test2

Proplot version

3.4.3 0.9.7

lukelbd commented 1 year ago

Bizarre... thanks for the report.