@@ -14,6 +14,10 @@ For new features that were added to matplotlib, please see
1414Changes in 1.2.x
1515================
1616
17+ * The new rc parameter ``savefig.format `` replaces ``cairo.format `` and
18+ ``savefig.extension ``, and sets the default file format used by
19+ :meth: `matplotlib.figure.Figure.savefig `.
20+
1721* In :meth: `~matplotlib.pyplot.pie ` and :meth: `~matplotlib.Axes.pie `, one can
1822 now set the radius of the pie; setting the *radius * to 'None' (the default
1923 value), will result in a pie with a radius of 1 as before.
@@ -237,7 +241,7 @@ Changes for 0.98.x
237241 labelsep labelspacing
238242 handlelen handlelength
239243 handlestextsep handletextpad
240- axespad borderaxespad
244+ axespad borderaxespad
241245 ================ ================
242246
243247
@@ -405,51 +409,51 @@ Old method New method
405409------------------------------------------------------------ ------------------------------------------------------------
406410:meth: `Bbox.height ` :attr: `transforms.Bbox.height `
407411------------------------------------------------------------ ------------------------------------------------------------
408- `Bbox.intervalx().get_bounds() ` :attr: `transforms.Bbox.intervalx `
412+ `Bbox.intervalx().get_bounds() ` :attr: `transforms.Bbox.intervalx `
409413`Bbox.intervalx().set_bounds() ` [:attr: `Bbox.intervalx ` is now a property.]
410414------------------------------------------------------------ ------------------------------------------------------------
411- `Bbox.intervaly().get_bounds() ` :attr: `transforms.Bbox.intervaly `
415+ `Bbox.intervaly().get_bounds() ` :attr: `transforms.Bbox.intervaly `
412416`Bbox.intervaly().set_bounds() ` [:attr: `Bbox.intervaly ` is now a property.]
413417------------------------------------------------------------ ------------------------------------------------------------
414- :meth: `Bbox.xmin ` :attr: `transforms.Bbox.x0 ` or
418+ :meth: `Bbox.xmin ` :attr: `transforms.Bbox.x0 ` or
415419 :attr: `transforms.Bbox.xmin ` [1 ]_
416420------------------------------------------------------------ ------------------------------------------------------------
417- :meth: `Bbox.ymin ` :attr: `transforms.Bbox.y0 ` or
421+ :meth: `Bbox.ymin ` :attr: `transforms.Bbox.y0 ` or
418422 :attr: `transforms.Bbox.ymin ` [1 ]_
419423------------------------------------------------------------ ------------------------------------------------------------
420- :meth: `Bbox.xmax ` :attr: `transforms.Bbox.x1 ` or
424+ :meth: `Bbox.xmax ` :attr: `transforms.Bbox.x1 ` or
421425 :attr: `transforms.Bbox.xmax ` [1 ]_
422426------------------------------------------------------------ ------------------------------------------------------------
423- :meth: `Bbox.ymax ` :attr: `transforms.Bbox.y1 ` or
427+ :meth: `Bbox.ymax ` :attr: `transforms.Bbox.y1 ` or
424428 :attr: `transforms.Bbox.ymax ` [1 ]_
425429------------------------------------------------------------ ------------------------------------------------------------
426- `Bbox.overlaps(bboxes) ` `Bbox.count_overlaps(bboxes) `
430+ `Bbox.overlaps(bboxes) ` `Bbox.count_overlaps(bboxes) `
427431------------------------------------------------------------ ------------------------------------------------------------
428- `bbox_all(bboxes) ` `Bbox.union(bboxes) `
432+ `bbox_all(bboxes) ` `Bbox.union(bboxes) `
429433 [:meth: `transforms.Bbox.union ` is a staticmethod.]
430434------------------------------------------------------------ ------------------------------------------------------------
431- `lbwh_to_bbox(l, b, w, h) ` `Bbox.from_bounds(x0, y0, w, h) `
435+ `lbwh_to_bbox(l, b, w, h) ` `Bbox.from_bounds(x0, y0, w, h) `
432436 [:meth: `transforms.Bbox.from_bounds ` is a staticmethod.]
433437------------------------------------------------------------ ------------------------------------------------------------
434438`inverse_transform_bbox(trans, bbox) ` `Bbox.inverse_transformed(trans) `
435439------------------------------------------------------------ ------------------------------------------------------------
436- `Interval.contains_open(v) ` `interval_contains_open(tuple, v) `
440+ `Interval.contains_open(v) ` `interval_contains_open(tuple, v) `
437441------------------------------------------------------------ ------------------------------------------------------------
438- `Interval.contains(v) ` `interval_contains(tuple, v) `
442+ `Interval.contains(v) ` `interval_contains(tuple, v) `
439443------------------------------------------------------------ ------------------------------------------------------------
440- `identity_transform() ` :class: `matplotlib.transforms.IdentityTransform `
444+ `identity_transform() ` :class: `matplotlib.transforms.IdentityTransform `
441445------------------------------------------------------------ ------------------------------------------------------------
442446`blend_xy_sep_transform(xtrans, ytrans) ` `blended_transform_factory(xtrans, ytrans) `
443447------------------------------------------------------------ ------------------------------------------------------------
444- `scale_transform(xs, ys) ` `Affine2D().scale(xs[, ys]) `
448+ `scale_transform(xs, ys) ` `Affine2D().scale(xs[, ys]) `
445449------------------------------------------------------------ ------------------------------------------------------------
446- `get_bbox_transform(boxin, boxout) ` `BboxTransform(boxin, boxout) ` or
447- `BboxTransformFrom(boxin) ` or
448- `BboxTransformTo(boxout) `
450+ `get_bbox_transform(boxin, boxout) ` `BboxTransform(boxin, boxout) ` or
451+ `BboxTransformFrom(boxin) ` or
452+ `BboxTransformTo(boxout) `
449453------------------------------------------------------------ ------------------------------------------------------------
450- `Transform.seq_xy_tup(points) ` `Transform.transform(points) `
454+ `Transform.seq_xy_tup(points) ` `Transform.transform(points) `
451455------------------------------------------------------------ ------------------------------------------------------------
452- `Transform.inverse_xy_tup(points) ` `Transform.inverted().transform(points) `
456+ `Transform.inverse_xy_tup(points) ` `Transform.inverted().transform(points) `
453457============================================================ ============================================================
454458
455459.. [1 ] The :class: `~matplotlib.transforms.Bbox ` is bound by the points
@@ -492,7 +496,7 @@ The :class:`Polar` class has moved to :mod:`matplotlib.projections.polar`.
492496============================================================ ============================================================
493497Old method New method
494498============================================================ ============================================================
495- `Artist.set_clip_path(path) ` `Artist.set_clip_path(path, transform) ` [5 ]_
499+ `Artist.set_clip_path(path) ` `Artist.set_clip_path(path, transform) ` [5 ]_
496500============================================================ ============================================================
497501
498502.. [5 ] :meth: `matplotlib.artist.Artist.set_clip_path ` now accepts a
@@ -519,7 +523,7 @@ Old method New method
519523============================================================ ============================================================
520524Old method New method
521525============================================================ ============================================================
522- `ColorConvertor.to_rgba_list(c) ` `ColorConvertor.to_rgba_array(c) `
526+ `ColorConvertor.to_rgba_list(c) ` `ColorConvertor.to_rgba_array(c) `
523527 [:meth: `matplotlib.colors.ColorConvertor.to_rgba_array `
524528 returns an Nx4 Numpy array of RGBA color quadruples.]
525529============================================================ ============================================================
@@ -530,7 +534,7 @@ Old method New method
530534============================================================ ============================================================
531535Old method New method
532536============================================================ ============================================================
533- `Contour._segments ` :meth: `matplotlib.contour.Contour.get_paths` ` [Returns a
537+ `Contour._segments ` :meth: `matplotlib.contour.Contour.get_paths` ` [Returns a
534538 list of :class: `matplotlib.path.Path ` instances.]
535539============================================================ ============================================================
536540
@@ -540,7 +544,7 @@ Old method New method
540544============================================================ ============================================================
541545Old method New method
542546============================================================ ============================================================
543- `Figure.dpi.get() ` / `Figure.dpi.set() ` :attr: `matplotlib.figure.Figure.dpi ` *(a property) *
547+ `Figure.dpi.get() ` / `Figure.dpi.set() ` :attr: `matplotlib.figure.Figure.dpi ` *(a property) *
544548============================================================ ============================================================
545549
546550:mod: `matplotlib.patches `
0 commit comments