8000 Undocument shading kwarg to pcolor. by anntzer · Pull Request #8976 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Undocument shading kwarg to pcolor. #8976

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

Merged
merged 1 commit into from
Aug 1, 2017
Merged
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
10 changes: 0 additions & 10 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5268,16 +5268,6 @@ def pcolor(self, *args, **kwargs):
``vmin`` or ``vmax`` passed in here override any pre-existing
values supplied in the ``norm`` instance.

shading : {'flat', 'faceted'}, optional, default: 'flat'
This kwarg is deprecated; please use ``edgecolors`` instead -

* ``shading='flat'``: ``edgecolors='none'``
* ``shading='faceted'``: ``edgecolors='k'``

If 'faceted', a black grid is drawn around each rectangle; if
'flat', edges are not drawn. Default is 'flat', contrary to
MATLAB.

edgecolors : {None, 'none', color, color sequence}
If None, the rc setting is used by default.
If 'none', edges will not be visible.
Expand Down
0