@@ -87,12 +87,12 @@ class ErrorbarContainer(Container):
87
87
lines : tuple
88
88
Tuple of ``(data_line, caplines, barlinecols)``.
89
89
90
- - data_line : :class: `~matplotlib.lines.Line2D` instance of
91
- x, y plot markers and/or line.
92
- - caplines : tuple of :class: `~matplotlib.lines.Line2D` instances of
93
- the error bar caps.
94
- - barlinecols : list of :class: `~matplotlib.collections.LineCollection`
95
- with the horizontal and vertical error ranges.
90
+ - data_line : A `~matplotlib.lines.Line2D` instance of x, y plot markers
91
+ and/or line.
92
+ - caplines : A tuple of `~matplotlib.lines.Line2D` instances of the error
93
+ bar caps.
94
+ - barlinecols : A tuple of `~matplotlib.collections.LineCollection` with the
95
+ horizontal and vertical error ranges.
96
96
97
97
has_xerr, has_yerr : bool
98
98
``True`` if the errorbar has x/y errors.
@@ -115,13 +115,13 @@ class StemContainer(Container):
115
115
116
116
Attributes
117
117
----------
118
- markerline : :class: `~matplotlib.lines.Line2D`
118
+ markerline : `~matplotlib.lines.Line2D`
119
119
The artist of the markers at the stem heads.
120
120
121
- stemlines : list of :class: `~matplotlib.lines.Line2D `
121
+ stemlines : `~matplotlib.collections.LineCollection `
122
122
The artists of the vertical lines for all stems.
123
123
124
- baseline : :class: `~matplotlib.lines.Line2D`
124
+ baseline : `~matplotlib.lines.Line2D`
125
125
The artist of the horizontal baseline.
126
126
"""
127
127
def __init__ (self , markerline_stemlines_baseline , ** kwargs ):
@@ -130,7 +130,7 @@ def __init__(self, markerline_stemlines_baseline, **kwargs):
130
130
----------
131
131
markerline_stemlines_baseline : tuple
132
132
Tuple of ``(markerline, stemlines, baseline)``.
133
- ``markerline`` contains the `.LineCollection ` of the markers,
133
+ ``markerline`` contains the `.Line2D ` of the markers,
134
134
``stemlines`` is a `.LineCollection` of the main lines,
135
135
``baseline`` is the `.Line2D` of the baseline.
136
136
"""
0 commit comments