From 4a30a1de346ad8ec8ab0fba1bbadad402c531ce9 Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Tue, 1 Nov 2016 15:16:51 +1100 Subject: [PATCH 1/2] Example of axes.spines.SIDE prop in matplotlibrc This addition is intended to prevent further questions about this on the mailing list: https://mail.python.org/pipermail/matplotlib-users/2016-October/000669.html --- matplotlibrc.template | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/matplotlibrc.template b/matplotlibrc.template index b628c52b355e..a09b776563f2 100644 --- a/matplotlibrc.template +++ b/matplotlibrc.template @@ -322,6 +322,12 @@ backend : $TEMPLATE_BACKEND # value of the data. +# axes.spines.left : True # Turn off the top and right axes spines +# axes.spines.bottom : True +# axes.spines.top : False +# axes.spines.right : False + + #axes.unicode_minus : True # use unicode for the minus symbol # rather than hyphen. See # http://en.wikipedia.org/wiki/Plus_and_minus_signs#Character_codes From 54e63d128e3250bf7938b3c66316150f26ed923f Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Wed, 2 Nov 2016 08:25:52 +1100 Subject: [PATCH 2/2] Leave axis spines on by default, even in comments --- matplotlibrc.template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/matplotlibrc.template b/matplotlibrc.template index a09b776563f2..b6c3398df055 100644 --- a/matplotlibrc.template +++ b/matplotlibrc.template @@ -322,10 +322,10 @@ backend : $TEMPLATE_BACKEND # value of the data. -# axes.spines.left : True # Turn off the top and right axes spines +# axes.spines.left : True # display axis spines # axes.spines.bottom : True -# axes.spines.top : False -# axes.spines.right : False +# axes.spines.top : True +# axes.spines.right : True #axes.unicode_minus : True # use unicode for the minus symbol