From what I test, GeoAxes can change labelsize, but SubplotGrid doesn't. For example: ```python fig, ax = pplt.subplots(proj='cyl') ax.format(labelsize=30) # no effect ax[0].format(labelsize=30) # can change fontsize to 30 ```
From what I test, GeoAxes can change labelsize, but SubplotGrid doesn't. For example: