@@ -1712,7 +1712,7 @@ def barh_wrapper(
1712
1712
def boxplot_wrapper (
1713
1713
self , func , * args ,
1714
1714
color = 'k' , fill = True , fillcolor = None , fillalpha = 0.7 ,
1715
- lw = None , linewidth = 0.7 , orientation = None ,
1715
+ lw = None , linewidth = None , orientation = None ,
1716
1716
marker = None , markersize = None ,
1717
1717
boxcolor = None , boxlw = None ,
1718
1718
capcolor = None , caplw = None ,
@@ -1779,7 +1779,7 @@ def boxplot_wrapper(
1779
1779
1780
1780
# Modify results
1781
1781
# TODO: Pass props keyword args instead? Maybe does not matter.
1782
- lw = _not_none (lw = lw , linewidth = linewidth )
1782
+ lw = _not_none (lw = lw , linewidth = linewidth , default = 0.8 )
1783
1783
if fillcolor is None :
1784
1784
cycler = next (self ._get_lines .prop_cycler )
1785
1785
fillcolor = cycler .get ('color' , None )
@@ -1818,7 +1818,7 @@ def boxplot_wrapper(
1818
1818
1819
1819
def violinplot_wrapper (
1820
1820
self , func , * args ,
1821
- lw = None , linewidth = 0.7 , fillcolor = None , edgecolor = 'k ' ,
1821
+ lw = None , linewidth = None , fillcolor = None , edgecolor = 'black ' ,
1822
1822
fillalpha = 0.7 , orientation = None ,
1823
1823
** kwargs
1824
1824
):
@@ -1841,7 +1841,7 @@ def violinplot_wrapper(
1841
1841
lw, linewidth : float, optional
1842
1842
The linewidth of the line objects. Default is ``1``.
1843
1843
edgecolor : color-spec, optional
1844
- The edge color for the violin patches. Default is ``'k '``.
1844
+ The edge color for the violin patches. Default is ``'black '``.
1845
1845
fillcolor : color-spec, optional
1846
1846
The violin plot fill color. Default is the next color cycler color.
1847
1847
fillalpha : float, optional
@@ -1870,7 +1870,7 @@ def violinplot_wrapper(
1870
1870
)
1871
1871
1872
1872
# Sanitize input
1873
- lw = _not_none (lw = lw , linewidth = linewidth )
1873
+ lw = _not_none (lw = lw , linewidth = linewidth , default = 0.8 )
1874
1874
if kwargs .pop ('showextrema' , None ):
1875
1875
warnings ._warn_proplot ('Ignoring showextrema=True.' )
1876
1876
if 'showmeans' in kwargs :
0 commit comments