/ . / MinrmsPlot / ActivePlot.py / DataSet
DataSet presents data points as unconnected items on the plot.
Data is one of:
two arrays (first is x; second is y),
array of tuples (components 0 and 1 are x and y), or
a single array of values (index is x, value is y).
Methods
|
|
|
highlightCircle
|
highlightCircle (
self,
item,
color,
)
|
|
deleteItems
|
deleteItems ( self )
|
|
replaceData
|
replaceData (
self,
x,
y=None,
)
|
|
createItems
|
createItems ( self )
|
|
setTag
|
setTag (
self,
plot,
tag,
)
|
|
setDoubleCallback
|
setDoubleCallback (
self,
cb,
closure,
)
|
|
highlight
|
highlight ( self, n )
|
|
circle
|
circle (
self,
canvas,
x,
y,
color,
)
|
|
setSingleCallback
|
setSingleCallback (
self,
cb,
closure,
)
|
|
__init__
|
__init__ (
self,
x,
y=None,
makeItem=None,
highlightItem=None,
itemWidth=2,
itemHeight=2,
itemXShift=0,
itemYShift=0,
baseColor='black',
highlightColor='red',
)
|
|
|