@@ -34,23 +34,35 @@ ProPlot v0.9.2 (2021-##-##)
34
34
Features
35
35
--------
36
36
37
+ * Permit passing `includepanels ` and `mathtext_fallback ` as
38
+ `proplot.figure.Figure.format ` keywords instead of just
39
+ ``__init__ `` keywords (:commit: `33bff576 `).
40
+ * Permit passing ``loc `` `proplot.axes.CartesianAxes.format ` keyword argument(s) to
41
+ ``alt[xy] `` (:commit: `eaab8658 `). For example ``ax.alty(loc='left') `` changes the
42
+ spine, tick mark, tick label, axis label, and offset label sides to the opposite of
43
+ the default: *left * for the new alternate axes, *right * for the original axes.
44
+ * Add documentation explaining default inheritance of the ``loc ``
45
+ `proplot.axes.CartesianAxes.format ` keywords (:commit: `1fa90f87 `). The order is
46
+ ``spineloc `` --> ``tickloc `` --> ``ticklabelloc `` --> ``labelloc `` and ``offsetloc ``,
47
+ e.g. ``xspineloc='bottom' `` implies ``xtickloc='bottom' `` unless specified otherwise.
48
+ * Add documentation for previously-hidden `xticklabelloc `, `yticklabelloc `, `xlabelloc `,
49
+ and `ylabelloc ` `proplot.axes.CartesianAxes.format ` keywords (:commit: `1fa90f87 `).
50
+ * Add `xoffsetloc ` and `yoffsetloc ` keywords to control position of offset
51
+ axis label location (used with large numbers) (:commit: `96a37e53 `).
52
+ * Add `base ` keyword to `~proplot.ticker.SigFigFormatter ` to optionally round to
53
+ multiples other than factors of 10 (:commit: `3b00e8a0 `).
37
54
* Support single-color parametric plots with e.g. ``ax.parametric(x, y, color='red') ``
38
55
as quick alternative to `plot ` without "sticky edges" (:commit: `98504b86 `).
39
56
* Increase `zorder ` of title/a-b-c text from ``3 `` to ``3.5 `` so it overlies
40
57
e.g. text contour labels (:commit: `77fa01da `).
41
- * Ensure contour `labels ` appear on top of inner titles/a-b-c labels by changing
42
- default `zorder ` to maximum of `` 3 `` or ``cntr_zorder + 1 `` (:commit: `59222164 `).
58
+ * Ensure contour `labels ` appear on top of inner titles/a-b-c labels by decreasing
59
+ default `zorder ` from `` cntr_zorder + 2 `` to ``cntr_zorder + 1 `` (:commit: `59222164 `).
43
60
* Implement "descending level" support directly inside `~proplot.colors.DiscreteNorm `
44
61
rather than cmap parser in plotting commands, and auto-reverse descending
45
62
levels passed to `~proplot.colors.SegmentedNorm ` (:commit: `46d8bedc `).
46
63
* Improve ``show_cmaps `` and ``show_cycles ``: Stop passing arguments through
47
64
constructor functions, preserve case for user colormap labels, and avoid
48
65
showing leading ``_ `` and trailing ``_copy `` in labels (:commit: `c41db8d8 `).
49
- * Permit passing `includepanels ` and `mathtext_fallback ` as
50
- `proplot.figure.Figure.format ` keywords instead of just
51
- ``__init__ `` keywords (:commit: `33bff576 `).
52
- * Add `base ` keyword to `~proplot.ticker.SigFigFormatter ` to optionally round to
53
- multiples other than factors of 10 (:commit: `3b00e8a0 `).
54
66
55
67
Bug fixes
56
68
---------
0 commit comments