Skip to content

Commit

Permalink
Merge pull request #5526 from phobson/add-bxpparams-to-rctemplate
Browse files Browse the repository at this point in the history
MNT: Add boxplot params to rctemplate
  • Loading branch information
tacaswell committed Nov 20, 2015
1 parent deeec9c commit 071fc5c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/mpl-data/stylelib/classic.mplstyle
Expand Up @@ -322,7 +322,7 @@ boxplot.capprops.color: k
boxplot.capprops.linestyle: -
boxplot.capprops.linewidth: 1.0
boxplot.flierprops.color: b
boxplot.flierprops.linestyle: -
boxplot.flierprops.linestyle: none
boxplot.flierprops.linewidth: 1.0
boxplot.flierprops.marker: +
boxplot.flierprops.markeredgecolor: k
Expand Down
44 changes: 44 additions & 0 deletions matplotlibrc.template
Expand Up @@ -102,6 +102,50 @@ backend : %(backend)s
#patch.edgecolor : black
#patch.antialiased : True # render patches in antialiased (no jaggies)

### Boxplot
#boxplot.notch : False
#boxplot.vertical : True
#boxplot.whiskers : 1
#boxplot.bootstrap : None
#boxplot.patchartist : False
#boxplot.showmeans : False
#boxplot.showcaps : True
#boxplot.showbox : True
#boxplot.showfliers : True
#boxplot.meanline : False

#boxplot.flierprops.color : 'k'
#boxplot.flierprops.marker : 'o'
#boxplot.flierprops.markerfacecolor : 'none'
#boxplot.flierprops.markeredgecolor : 'k'
#boxplot.flierprops.markersize : 6
#boxplot.flierprops.linestyle : 'none'
#boxplot.flierprops.linewidth : 1.0

#boxplot.boxprops.color : 'k'
#boxplot.boxprops.linewidth : 1.0
#boxplot.boxprops.linestyle : '-'

#boxplot.whiskerprops.color : 'k'
#boxplot.whiskerprops.linewidth : 1.0
#boxplot.whiskerprops.linestyle : '-'

#boxplot.capprops.color : 'k'
#boxplot.capprops.linewidth : 1.0
#boxplot.capprops.linestyle : '-'

#boxplot.medianprops.color : 'b'
#boxplot.medianprops.linewidth : 1.0
#boxplot.medianprops.linestyle : '-'

#boxplot.meanprops.color : 'b'
#boxplot.meanprops.marker : '^'
#boxplot.meanprops.markerfacecolor : 'b'
#boxplot.meanprops.markeredgecolor : 'b'
#boxplot.meanprops.markersize : 6
#boxplot.meanprops.linestyle : 'none'
#boxplot.meanprops.linewidth : 1.0

### FONT
#
# font properties used by text.Text. See
Expand Down

0 comments on commit 071fc5c

Please sign in to comment.