|
__init__(self,
name,
color=None,
style=None,
marker=None)
Creates a new Channel with the matplotlib label
name . |
source code
|
|
|
getLabel(self)
Returns the matplotlib label for this channel of data. |
source code
|
|
|
getColor(self)
Returns the line color string to use when the line is plotted, or
None to use an automatically generated color. |
source code
|
|
|
getStyle(self)
Returns the line style string to use when the line is plotted, or
None to use the default line style. |
source code
|
|
|
getMarker(self)
Returns the line marker string to use when the line is plotted, or
None to use the default line marker. |
source code
|
|
|
hasChanged(self)
Returns a boolean indicating if the line data has changed. |
source code
|
|
|
|
|
getX(self)
Template method that returns the vector of X axis data or
None if there is no data available. |
source code
|
|
|
getY(self)
Template method that returns the vector of Y axis data or
None if there is no data available. |
source code
|
|