File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
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
+
1
9
2010-06-20 Added Axes.tick_params and corresponding pyplot function
2
10
to control tick and tick label appearance after an Axes
3
11
has been created. - EF
Original file line number Diff line number Diff line change @@ -10,11 +10,22 @@ list may help describe what changes may be necessary in your code.
10
10
Changes beyond 0.99.x
11
11
=====================
12
12
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
14
22
functions to facilitate autoscaling, tick location, and tick
15
23
label formatting, and the general appearance of ticks and
16
24
tick labels:
17
25
26
+ + :meth: `matplotlib.axes.Axes.autoscale ` turns autoscaling
27
+ on or off, and applies it.
28
+
18
29
+ :meth: `matplotlib.axes.Axes.margins ` sets margins used to
19
30
autoscale the :attr: `matplotlib.axes.Axes.viewLim ` based on
20
31
the :attr: `matplotlib.axes.Axes.dataLim `.
You can’t perform that action at this time.
0 commit comments