@@ -148,12 +148,12 @@ def __init__(self, axes, loc, label=None,
148
148
self .tick1line = mlines .Line2D (
149
149
[], [],
150
150
color = color , linestyle = "none" , zorder = zorder , visible = tick1On ,
151
- markersize = size , markeredgewidth = width ,
151
+ markeredgecolor = color , markersize = size , markeredgewidth = width ,
152
152
)
153
153
self .tick2line = mlines .Line2D (
154
154
[], [],
155
155
color = color , linestyle = "none" , zorder = zorder , visible = tick2On ,
156
- markersize = size , markeredgewidth = width ,
156
+ markeredgecolor = color , markersize = size , markeredgewidth = width ,
157
157
)
158
158
self .gridline = mlines .Line2D (
159
159
[], [],
@@ -352,6 +352,8 @@ def _apply_params(self, **kw):
352
352
trans = self ._get_text2_transform ()[0 ]
353
353
self .label2 .set_transform (trans )
354
354
tick_kw = {k : v for k , v in kw .items () if k in ['color' , 'zorder' ]}
355
+ if 'color' in kw :
356
+ tick_kw ['markeredgecolor' ] = kw ['color' ]
355
357
self .tick1line .set (** tick_kw )
356
358
self .tick2line .set (** tick_kw )
357
359
for k , v in tick_kw .items ():
0 commit comments