@@ -1257,6 +1257,16 @@ def __init__(self, offsetbox, xy,
1257
1257
(accessible as the ``patch`` attribute of the `.AnnotationBbox`).
1258
1258
If *frameon* is set to False, this patch is made invisible.
1259
1259
1260
+ annotation_clip: bool or None, default: None
1261
+ Whether to clip (i.e. not draw) the annotation when the annotation
1262
+ point *xy* is outside the axes area.
1263
+
1264
+ - If *True*, the annotation will be clipped when *xy* is outside
1265
+ the axes.
1266
+ - If *False*, the annotation will always be drawn.
1267
+ - If *None*, the annotation will be clipped when *xy* is outside
1268
+ the axes and *xycoords* is 'data'.
1269
+
1260
1270
pad : float, default: 0.4
1261
1271
Padding around the offsetbox.
1262
1272
@@ -1265,8 +1275,25 @@ def __init__(self, offsetbox, xy,
1265
1275
the offset box w.r.t. the *boxcoords*.
1266
1276
The lower-left corner is (0, 0) and upper-right corner is (1, 1).
1267
1277
1278
+ bboxprops : dict, optional
1279
+ A dictionary of properties to set for the annotation bounding box,
1280
+ for example *boxstyle* and *alpha*. See `.FancyBboxPatch` for
1281
+ details.
1282
+
1283
+ arrowprops: dict, optional
1284
+ Arrow properties, see `.Annotation` for description.
1285
+
1286
+ fontsize: float or str, optional
1287
+ Translated to points and passed as *mutation_scale* into
1288
+ `.FancyBboxPatch` to scale attributes of the box style (e.g. pad
1289
+ or rounding_size). The name is chosen in analogy to `.Text` where
1290
+ *fontsize* defines the mutation scale as well. If not given,
1291
+ :rc:`legend.fontsize` is used. See `.Text.set_fontsize` for valid
1292
+ values.
1293
+
1268
1294
**kwargs
1269
- Other parameters are identical to `.Annotation`.
1295
+ Other `AnnotationBbox` properties. See `.AnnotationBbox.set` for
1296
+ a list.
1270
1297
"""
1271
1298
1272
1299
martist .Artist .__init__ (self )
0 commit comments