Skip to content
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
7 changes: 5 additions & 2 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1790,12 +1790,15 @@ def step(self, x, y, *args, **kwargs):
Keyword arguments:

*where*: [ 'pre' | 'post' | 'mid' ]
If 'pre', the interval from x[i] to x[i+1] has level y[i+1]
If 'pre' (the default), the interval from x[i] to x[i+1] has level
y[i+1].

If 'post', that interval has level y[i]
If 'post', that interval has level y[i].

If 'mid', the jumps in *y* occur half-way between the
*x*-values.

Return value is a list of lines that were added.
"""

where = kwargs.pop('where', 'pre')
Expand Down