Skip to content

Commit d9b4b34

Browse files
committed
doc changes for last commit
svn path=/trunk/matplotlib/; revision=8480
1 parent 5ecf50a commit d9b4b34

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2010-06-30 Added autoscale convenience method and corresponding
2+
pyplot function for simplified control of autoscaling;
3+
and changed axis, set_xlim, and set_ylim so that by
4+
default, they turn off the autoscaling on the relevent
5+
axis or axes. Therefore one can call set_xlim before
6+
plotting a line, for example, and the limits will be
7+
retained. - EF
8+
19
2010-06-20 Added Axes.tick_params and corresponding pyplot function
210
to control tick and tick label appearance after an Axes
311
has been created. - EF

doc/api/api_changes.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,22 @@ list may help describe what changes may be necessary in your code.
1010
Changes beyond 0.99.x
1111
=====================
1212

13-
* There are four new Axes methods with corresponding pyplot
13+
* The default behavior of :meth:`matplotlib.axes.Axes.set_xlim`,
14+
:meth:`matplotlib.axes.Axes.set_ylim`, and
15+
:meth:`matplotlib.axes.Axes.axis`, and their corresponding
16+
pyplot functions, has been changed: when view limits are
17+
set explicitly with one of these methods, autoscaling is turned
18+
off for the matching axis. A new *auto* kwarg is available to
19+
control this behavior.
20+
21+
* There are five new Axes methods with corresponding pyplot
1422
functions to facilitate autoscaling, tick location, and tick
1523
label formatting, and the general appearance of ticks and
1624
tick labels:
1725

26+
+ :meth:`matplotlib.axes.Axes.autoscale` turns autoscaling
27+
on or off, and applies it.
28+
1829
+ :meth:`matplotlib.axes.Axes.margins` sets margins used to
1930
autoscale the :attr:`matplotlib.axes.Axes.viewLim` based on
2031
the :attr:`matplotlib.axes.Axes.dataLim`.

0 commit comments

Comments
 (0)