@@ -14,7 +14,7 @@ def __init__(self, width, height, xdescent, ydescent,
1414 loc , pad = 0.4 , borderpad = 0.5 , prop = None , frameon = True ,
1515 ** kwargs ):
1616 """
17- An anchored container with a fixed size and fillable DrawingArea.
17+ An anchored container with a fixed size and fillable `. DrawingArea` .
1818
1919 Artists added to the *drawing_area* will have their coordinates
2020 interpreted as pixels. Any transformations set on the artists will be
@@ -37,16 +37,16 @@ def __init__(self, width, height, xdescent, ydescent,
3737 Padding around the child objects, in fraction of the font size.
3838 borderpad : float, default: 0.5
3939 Border padding, in fraction of the font size.
40- prop : `matplotlib.font_manager.FontProperties`, optional
40+ prop : `~ matplotlib.font_manager.FontProperties`, optional
4141 Font property used as a reference for paddings.
4242 frameon : bool, default: True
43- If True, draw a box around this artists .
43+ If True, draw a box around this artist .
4444 **kwargs
4545 Keyword arguments forwarded to `.AnchoredOffsetbox`.
4646
4747 Attributes
4848 ----------
49- drawing_area : `matplotlib.offsetbox.DrawingArea`
49+ drawing_area : `~ matplotlib.offsetbox.DrawingArea`
5050 A container for artists to display.
5151
5252 Examples
@@ -81,7 +81,7 @@ def __init__(self, transform, loc,
8181
8282 Parameters
8383 ----------
84- transform : `matplotlib.transforms.Transform`
84+ transform : `~ matplotlib.transforms.Transform`
8585 The transformation object for the coordinate system in use, i.e.,
8686 :attr:`matplotlib.axes.Axes.transData`.
8787 loc : str
@@ -95,16 +95,16 @@ def __init__(self, transform, loc,
9595 Padding around the child objects, in fraction of the font size.
9696 borderpad : float, default: 0.5
9797 Border padding, in fraction of the font size.
98- prop : `matplotlib.font_manager.FontProperties`, optional
98+ prop : `~ matplotlib.font_manager.FontProperties`, optional
9999 Font property used as a reference for paddings.
100100 frameon : bool, default: True
101- If True, draw a box around this artists .
101+ If True, draw a box around this artist .
102102 **kwargs
103103 Keyword arguments forwarded to `.AnchoredOffsetbox`.
104104
105105 Attributes
106106 ----------
107- drawing_area : `matplotlib.offsetbox.AuxTransformBox`
107+ drawing_area : `~ matplotlib.offsetbox.AuxTransformBox`
108108 A container for artists to display.
109109
110110 Examples
@@ -132,7 +132,7 @@ def __init__(self, transform, width, height, angle, loc,
132132
133133 Parameters
134134 ----------
135- transform : `matplotlib.transforms.Transform`
135+ transform : `~ matplotlib.transforms.Transform`
136136 The transformation object for the coordinate system in use, i.e.,
137137 :attr:`matplotlib.axes.Axes.transData`.
138138 width, height : float
@@ -153,14 +153,14 @@ def __init__(self, transform, width, height, angle, loc,
153153 Border padding, in fraction of the font size.
154154 frameon : bool, default: True
155155 If True, draw a box around the ellipse.
156- prop : `matplotlib.font_manager.FontProperties`, optional
156+ prop : `~ matplotlib.font_manager.FontProperties`, optional
157157 Font property used as a reference for paddings.
158158 **kwargs
159159 Keyword arguments forwarded to `.AnchoredOffsetbox`.
160160
161161 Attributes
162162 ----------
163- ellipse : `matplotlib.patches.Ellipse`
163+ ellipse : `~ matplotlib.patches.Ellipse`
164164 Ellipse patch drawn.
165165 """
166166 self ._box = AuxTransformBox (transform )
@@ -182,7 +182,7 @@ def __init__(self, transform, size, label, loc,
182182
183183 Parameters
184184 ----------
185- transform : `matplotlib.transforms.Transform`
185+ transform : `~ matplotlib.transforms.Transform`
186186 The transformation object for the coordinate system in use, i.e.,
187187 :attr:`matplotlib.axes.Axes.transData`.
188188 size : float
@@ -213,7 +213,7 @@ def __init__(self, transform, size, label, loc,
213213 Color for the size bar and label.
214214 label_top : bool, default: False
215215 If True, the label will be over the size bar.
216- fontproperties : `matplotlib.font_manager.FontProperties`, optional
216+ fontproperties : `~ matplotlib.font_manager.FontProperties`, optional
217217 Font properties for the label text.
218218 fill_bar : bool, optional
219219 If True and if *size_vertical* is nonzero, the size bar will
@@ -225,15 +225,15 @@ def __init__(self, transform, size, label, loc,
225225
226226 Attributes
227227 ----------
228- size_bar : `matplotlib.offsetbox.AuxTransformBox`
228+ size_bar : `~ matplotlib.offsetbox.AuxTransformBox`
229229 Container for the size bar.
230- txt_label : `matplotlib.offsetbox.TextArea`
230+ txt_label : `~ matplotlib.offsetbox.TextArea`
231231 Container for the label of the size bar.
232232
233233 Notes
234234 -----
235235 If *prop* is passed as a keyword argument, but *fontproperties* is
236- not, then *prop* is be assumed to be the intended *fontproperties*.
236+ not, then *prop* is assumed to be the intended *fontproperties*.
237237 Using both *prop* and *fontproperties* is not supported.
238238
239239 Examples
@@ -301,7 +301,7 @@ def __init__(self, transform, label_x, label_y, length=0.15,
301301
302302 Parameters
303303 ----------
304- transform : `matplotlib.transforms.Transform`
304+ transform : `~ matplotlib.transforms.Transform`
305305 The transformation object for the coordinate system in use, i.e.,
306306 :attr:`matplotlib.axes.Axes.transAxes`.
307307 label_x, label_y : str
@@ -335,7 +335,7 @@ def __init__(self, transform, label_x, label_y, length=0.15,
335335 sep_x, sep_y : float, default: 0.01 and 0 respectively
336336 Separation between the arrows and labels in coordinates of
337337 *transform*.
338- fontproperties : `matplotlib.font_manager.FontProperties`, optional
338+ fontproperties : `~ matplotlib.font_manager.FontProperties`, optional
339339 Font properties for the label text.
340340 back_length : float, default: 0.15
341341 Fraction of the arrow behind the arrow crossing.
@@ -347,25 +347,25 @@ def __init__(self, transform, label_x, label_y, length=0.15,
347347 Width of arrow tail, sent to ArrowStyle.
348348 text_props, arrow_props : dict
349349 Properties of the text and arrows, passed to
350- `.textpath.TextPath` and `.patches.FancyArrowPatch`.
350+ `~ .textpath.TextPath` and `~ .patches.FancyArrowPatch`.
351351 **kwargs
352352 Keyword arguments forwarded to `.AnchoredOffsetbox`.
353353
354354 Attributes
355355 ----------
356- arrow_x, arrow_y : `matplotlib.patches.FancyArrowPatch`
356+ arrow_x, arrow_y : `~ matplotlib.patches.FancyArrowPatch`
357357 Arrow x and y
358- text_path_x, text_path_y : `matplotlib.textpath.TextPath`
358+ text_path_x, text_path_y : `~ matplotlib.textpath.TextPath`
359359 Path for arrow labels
360- p_x, p_y : `matplotlib.patches.PathPatch`
360+ p_x, p_y : `~ matplotlib.patches.PathPatch`
361361 Patch for arrow labels
362- box : `matplotlib.offsetbox.AuxTransformBox`
362+ box : `~ matplotlib.offsetbox.AuxTransformBox`
363363 Container for the arrows and labels.
364364
365365 Notes
366366 -----
367367 If *prop* is passed as a keyword argument, but *fontproperties* is
368- not, then *prop* is be assumed to be the intended *fontproperties*.
368+ not, then *prop* is assumed to be the intended *fontproperties*.
369369 Using both *prop* and *fontproperties* is not supported.
370370
371371 Examples
0 commit comments