@@ -41,11 +41,13 @@ You can also filter on class instances::
4141
4242
4343.. _howto-supress_offset :
44+
4445How to prevent ticklabels from having an offset
4546-----------------------------------------------
4647The default formatter will use an offset to reduce
4748the length of the ticklabels. To turn this feature
4849off on a per-axis basis::
50+
4951 ax.get_xaxis().get_major_formatter().set_useOffset(False)
5052
5153set the rcParam ``axes.formatter.useoffset ``, or use a different
@@ -385,6 +387,7 @@ pyplot::
385387
386388
387389.. seealso ::
390+
388391 :ref: `howto-webapp ` for information about running matplotlib inside
389392 of a web application.
390393
@@ -581,7 +584,8 @@ enabled, you may get errors if you don't configure matplotlib for use
581584in these environments. Most importantly, you need to decide what
582585kinds of images you want to generate (PNG, PDF, SVG) and configure the
583586appropriate default backend. For 99% of users, this will be the Agg
584- backend, which uses the C++ `antigrain <http://antigrain.com >`_
587+ backend, which uses the C++
588+ `antigrain <http://agg.sourceforge.net/antigrain.com/index.html >`_
585589rendering engine to make nice PNGs. The Agg backend is also
586590configured to recognize requests to generate other output formats
587591(PDF, PS, EPS, SVG). The easiest way to configure matplotlib to use
@@ -615,7 +619,7 @@ or by saving to a file handle::
615619 import sys
616620 fig.savefig(sys.stdout)
617621
618- Here is an example using `Pillow <http://python-imaging.github.io/>__ .
622+ Here is an example using `Pillow <http://python-imaging.github.io/ >`_ .
619623First, the figure is saved to a StringIO object which is then fed to
620624Pillow for further processing::
621625
0 commit comments