-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Closed
Description
Consider the following code:
import matplotlib
matplotlib.use('Agg')
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
fig = plt.figure(figsize=(4, 3))
ax = fig.add_subplot(111, projection='3d')
X, Y, Z = axes3d.get_test_data(0.05)
matplotlib.rcParams['font.size'] = 7
ax.plot_wireframe(X, Y, Z, rstride=10, cstride=10)
fig.savefig('t_' + matplotlib.__version__ + '.png')
In 1.4.3 it produced the following:
But in 1.5.0 I get:
Notice how the tick labels are disproportionately far from the axes. Is it some parameter in rcParams that I can revert to 1.4.3 value, or a bug?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

