File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+
192010-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
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.
1010Changes 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 `.
You can’t perform that action at this time.
0 commit comments