Skip to content

Update tricontour[f] docs #17742

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 5 commits into from
Jun 26, 2020
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions doc/api/tri_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
.. autoclass:: matplotlib.tri.Triangulation
:members:

.. autoclass:: matplotlib.tri.TriContourSet
:show-inheritance:

.. autoclass:: matplotlib.tri.TriFinder

.. autoclass:: matplotlib.tri.TrapezoidMapTriFinder
Expand Down
6 changes: 0 additions & 6 deletions doc/missing-references.json
Original file line number Diff line number Diff line change
Expand Up @@ -1374,12 +1374,6 @@
"matplotlib.colorbar.ColorbarBase.set_norm": [
"doc/api/prev_api_changes/api_changes_3.1.0.rst:290"
],
"matplotlib.contour.TriContourSet": [
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.tricontour:57",
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.tricontourf:57",
"lib/matplotlib/tri/tricontour.py:docstring of matplotlib.axes.Axes.tricontour:57",
"lib/matplotlib/tri/tricontour.py:docstring of matplotlib.axes.Axes.tricontourf:57"
],
"matplotlib.dates.rrulewrapper": [
"lib/matplotlib/dates.py:docstring of matplotlib.dates:121"
],
Expand Down
4 changes: 2 additions & 2 deletions lib/matplotlib/contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -1653,7 +1653,7 @@ def _initialize_x_y(self, z):
By default (value *None*), the colormap specified by *cmap*
will be used.

alpha : float, optional
alpha : float, default: 1
The alpha blending value, between 0 (transparent) and 1 (opaque).

cmap : str or `.Colormap`, default: :rc:`image.cmap`
Expand Down Expand Up @@ -1707,7 +1707,7 @@ def _initialize_x_y(self, z):
and above the *levels* range.

Values below ``min(levels)`` and above ``max(levels)`` are mapped
to the under/over values of the `.Colormap`. Note, that most
to the under/over values of the `.Colormap`. Note that most
colormaps do not have dedicated colors for these by default, so
that the over and under values are the edge values of the colormap.
You may want to set these values explicitly using
Expand Down
Loading