@@ -495,7 +495,7 @@ def __init__(self, transform, label_x, label_y, length=0.15,
495
495
p_x, p_y : `matplotlib.patches.PathPatch`
496
496
Patch for arrow labels
497
497
498
- _box : `matplotlib.offsetbox.AuxTransformBox`
498
+ box : `matplotlib.offsetbox.AuxTransformBox`
499
499
Container for the arrows and labels.
500
500
501
501
Notes
@@ -555,7 +555,7 @@ def __init__(self, transform, label_x, label_y, length=0.15,
555
555
t_start = transform
556
556
t_end = t_start + transforms .Affine2D ().rotate_deg (angle )
557
557
558
- self ._box = AuxTransformBox (t_end )
558
+ self .box = AuxTransformBox (t_end )
559
559
560
560
length_x = length
561
561
length_y = length * aspect_ratio
@@ -576,8 +576,8 @@ def __init__(self, transform, label_x, label_y, length=0.15,
576
576
shrinkB = 0.0 ,
577
577
** arrow_props )
578
578
579
- self ._box .add_artist (self .arrow_x )
580
- self ._box .add_artist (self .arrow_y )
579
+ self .box .add_artist (self .arrow_x )
580
+ self .box .add_artist (self .arrow_y )
581
581
582
582
text_path_x = TextPath ((
583
583
length_x + sep_x , back_length * length_y + sep_y ), label_x ,
@@ -592,5 +592,5 @@ def __init__(self, transform, label_x, label_y, length=0.15,
592
592
self ._box .add_artist (self .p_y )
593
593
594
594
AnchoredOffsetbox .__init__ (self , loc , pad = pad , borderpad = borderpad ,
595
- child = self ._box ,
595
+ child = self .box ,
596
596
frameon = frameon , ** kwargs )
0 commit comments