Class ScaledStripChart
Stripchart widget with a vertical scale.
This widget is a combination of a VGrade
widget and a StripChart
widget. The VGrade
is placed to the left of the StripChart
and provides it with a vertical
scale. The vertical scale is connected to the StripChart
so that changing it will change
the vertical range that is displayed.
For details on the data
member, please see the documentation
for the StripChart
class.
The width, in pixels, of the VGrade
which is displayed on the left of
the StripChart
may be set and queried using the
gradewidth
data member.
Method Summary |
|
__init__ (self,
hadjustment,
vadjustment,
selection)
Initializes the widget. |
|
__delattr__ (self,
name)
Delete attributes method. |
|
__getattr__ (self,
name)
Get attributes method. |
|
__setattr__ (self,
name,
value)
Set attributes method. |
__init__(self,
hadjustment=None,
vadjustment=None,
selection=None)
(Constructor)
Initializes the widget.
-
|
__delattr__(self,
name)
Delete attributes method.
-
|
__getattr__(self,
name)
(Qualification operator)
Get attributes method.
-
|
__setattr__(self,
name,
value)
Set attributes method.
-
|
Instance Variable Details |
data
Data to display. See StripChart for details.
-
- Type:
-
Any sequence type object.
|
hadjustment
Horizontal display range.
-
- Type:
-
gtk.Adjustment
|
period
Sampling period. Equal to 1 / (sampling
frequency).
-
- Type:
-
float
|
selection
Selection range.
-
- Type:
-
gtk.Adjustment
|
vadjustment
Vertical display range.
-
- Type:
-
gtk.Adjustment
|
widget
Read-only pseudo-parent widget.
-
- Type:
-
gtk.HBox
|