@@ -14,6 +14,10 @@ For new features that were added to matplotlib, please see
14
14
Changes in 1.2.x
15
15
================
16
16
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
+
17
21
* In :meth: `~matplotlib.pyplot.pie ` and :meth: `~matplotlib.Axes.pie `, one can
18
22
now set the radius of the pie; setting the *radius * to 'None' (the default
19
23
value), will result in a pie with a radius of 1 as before.
@@ -237,7 +241,7 @@ Changes for 0.98.x
237
241
labelsep labelspacing
238
242
handlelen handlelength
239
243
handlestextsep handletextpad
240
- axespad borderaxespad
244
+ axespad borderaxespad
241
245
================ ================
242
246
243
247
@@ -405,51 +409,51 @@ Old method New method
405
409
------------------------------------------------------------ ------------------------------------------------------------
406
410
:meth: `Bbox.height ` :attr: `transforms.Bbox.height `
407
411
------------------------------------------------------------ ------------------------------------------------------------
408
- `Bbox.intervalx().get_bounds() ` :attr: `transforms.Bbox.intervalx `
412
+ `Bbox.intervalx().get_bounds() ` :attr: `transforms.Bbox.intervalx `
409
413
`Bbox.intervalx().set_bounds() ` [:attr: `Bbox.intervalx ` is now a property.]
410
414
------------------------------------------------------------ ------------------------------------------------------------
411
- `Bbox.intervaly().get_bounds() ` :attr: `transforms.Bbox.intervaly `
415
+ `Bbox.intervaly().get_bounds() ` :attr: `transforms.Bbox.intervaly `
412
416
`Bbox.intervaly().set_bounds() ` [:attr: `Bbox.intervaly ` is now a property.]
413
417
------------------------------------------------------------ ------------------------------------------------------------
414
- :meth: `Bbox.xmin ` :attr: `transforms.Bbox.x0 ` or
418
+ :meth: `Bbox.xmin ` :attr: `transforms.Bbox.x0 ` or
415
419
:attr: `transforms.Bbox.xmin ` [1 ]_
416
420
------------------------------------------------------------ ------------------------------------------------------------
417
- :meth: `Bbox.ymin ` :attr: `transforms.Bbox.y0 ` or
421
+ :meth: `Bbox.ymin ` :attr: `transforms.Bbox.y0 ` or
418
422
:attr: `transforms.Bbox.ymin ` [1 ]_
419
423
------------------------------------------------------------ ------------------------------------------------------------
420
- :meth: `Bbox.xmax ` :attr: `transforms.Bbox.x1 ` or
424
+ :meth: `Bbox.xmax ` :attr: `transforms.Bbox.x1 ` or
421
425
:attr: `transforms.Bbox.xmax ` [1 ]_
422
426
------------------------------------------------------------ ------------------------------------------------------------
423
- :meth: `Bbox.ymax ` :attr: `transforms.Bbox.y1 ` or
427
+ :meth: `Bbox.ymax ` :attr: `transforms.Bbox.y1 ` or
424
428
:attr: `transforms.Bbox.ymax ` [1 ]_
425
429
------------------------------------------------------------ ------------------------------------------------------------
426
- `Bbox.overlaps(bboxes) ` `Bbox.count_overlaps(bboxes) `
430
+ `Bbox.overlaps(bboxes) ` `Bbox.count_overlaps(bboxes) `
427
431
------------------------------------------------------------ ------------------------------------------------------------
428
- `bbox_all(bboxes) ` `Bbox.union(bboxes) `
432
+ `bbox_all(bboxes) ` `Bbox.union(bboxes) `
429
433
[:meth: `transforms.Bbox.union ` is a staticmethod.]
430
434
------------------------------------------------------------ ------------------------------------------------------------
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) `
432
436
[:meth: `transforms.Bbox.from_bounds ` is a staticmethod.]
433
437
------------------------------------------------------------ ------------------------------------------------------------
434
438
`inverse_transform_bbox(trans, bbox) ` `Bbox.inverse_transformed(trans) `
435
439
------------------------------------------------------------ ------------------------------------------------------------
436
- `Interval.contains_open(v) ` `interval_contains_open(tuple, v) `
440
+ `Interval.contains_open(v) ` `interval_contains_open(tuple, v) `
437
441
------------------------------------------------------------ ------------------------------------------------------------
438
- `Interval.contains(v) ` `interval_contains(tuple, v) `
442
+ `Interval.contains(v) ` `interval_contains(tuple, v) `
439
443
------------------------------------------------------------ ------------------------------------------------------------
440
- `identity_transform() ` :class: `matplotlib.transforms.IdentityTransform `
444
+ `identity_transform() ` :class: `matplotlib.transforms.IdentityTransform `
441
445
------------------------------------------------------------ ------------------------------------------------------------
442
446
`blend_xy_sep_transform(xtrans, ytrans) ` `blended_transform_factory(xtrans, ytrans) `
443
447
------------------------------------------------------------ ------------------------------------------------------------
444
- `scale_transform(xs, ys) ` `Affine2D().scale(xs[, ys]) `
448
+ `scale_transform(xs, ys) ` `Affine2D().scale(xs[, ys]) `
445
449
------------------------------------------------------------ ------------------------------------------------------------
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) `
449
453
------------------------------------------------------------ ------------------------------------------------------------
450
- `Transform.seq_xy_tup(points) ` `Transform.transform(points) `
454
+ `Transform.seq_xy_tup(points) ` `Transform.transform(points) `
451
455
------------------------------------------------------------ ------------------------------------------------------------
452
- `Transform.inverse_xy_tup(points) ` `Transform.inverted().transform(points) `
456
+ `Transform.inverse_xy_tup(points) ` `Transform.inverted().transform(points) `
453
457
============================================================ ============================================================
454
458
455
459
.. [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`.
492
496
============================================================ ============================================================
493
497
Old method New method
494
498
============================================================ ============================================================
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 ]_
496
500
============================================================ ============================================================
497
501
498
502
.. [5 ] :meth: `matplotlib.artist.Artist.set_clip_path ` now accepts a
@@ -519,7 +523,7 @@ Old method New method
519
523
============================================================ ============================================================
520
524
Old method New method
521
525
============================================================ ============================================================
522
- `ColorConvertor.to_rgba_list(c) ` `ColorConvertor.to_rgba_array(c) `
526
+ `ColorConvertor.to_rgba_list(c) ` `ColorConvertor.to_rgba_array(c) `
523
527
[:meth: `matplotlib.colors.ColorConvertor.to_rgba_array `
524
528
returns an Nx4 Numpy array of RGBA color quadruples.]
525
529
============================================================ ============================================================
@@ -530,7 +534,7 @@ Old method New method
530
534
============================================================ ============================================================
531
535
Old method New method
532
536
============================================================ ============================================================
533
- `Contour._segments ` :meth: `matplotlib.contour.Contour.get_paths` ` [Returns a
537
+ `Contour._segments ` :meth: `matplotlib.contour.Contour.get_paths` ` [Returns a
534
538
list of :class: `matplotlib.path.Path ` instances.]
535
539
============================================================ ============================================================
536
540
@@ -540,7 +544,7 @@ Old method New method
540
544
============================================================ ============================================================
541
545
Old method New method
542
546
============================================================ ============================================================
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) *
544
548
============================================================ ============================================================
545
549
546
550
:mod: `matplotlib.patches `
0 commit comments