8000 Bugfix for issue #750 (gridlines for 3d axes cover a plotted surface … by AmyTeegarden · Pull Request #5033 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Bugfix for issue #750 (gridlines for 3d axes cover a plotted surface … #5033

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bugfix for issue #750 (gridlines for 3d axes cover a plotted surface …
…after ax.cla() is called)
  • Loading branch information
AmyTeegarden committed Sep 7, 2015
commit 8c51da32633c34a0e9303571e776fd3535a7fa48
1 change: 1 addition & 0 deletions lib/mpl_toolkits/mplot3d/axes3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -1072,6 +1072,7 @@ def cla(self):
self._zmargin = 0

Axes.cla(self)
Axes.set_axis_off(self)

self.grid(rcParams['axes3d.grid'])

Expand Down
0