Public Member Functions | Static Public Attributes | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
rqt_plot.data_plot.DataPlot Class Reference
Inheritance diagram for rqt_plot.data_plot.DataPlot:
Inheritance graph
[legend]

Public Member Functions

def __init__ (self, parent=None)
 
def add_curve (self, curve_id, curve_name, data_x, data_y)
 
def autoscroll (self, enabled=True)
 
def clear_values (self, curve_id=None)
 
def doSettingsDialog (self)
 
def get_xlim (self)
 
def get_ylim (self)
 
def getTitle (self)
 
def redraw (self)
 
def remove_curve (self, curve_id)
 
def restore_settings (self, plugin_settings, instance_settings)
 
def save_settings (self, plugin_settings, instance_settings)
 
def set_autoscale (self, x=None, y=None)
 
def set_xlim (self, limits)
 
def set_ylim (self, limits)
 
def update_values (self, curve_id, values_x, values_y, sort_data=True)
 
def vline (self, x, color=RED)
 

Static Public Attributes

tuple BLUE = (0, 0, 255)
 
tuple GREEN = (0, 255, 0)
 
 limits_changed = Signal()
 
list plot_types
 
tuple RED = (255, 0, 0)
 
int SCALE_ALL = 1
 
int SCALE_EXTEND = 4
 
int SCALE_VISIBLE = 2
 

Private Member Functions

def _do_redraw (self)
 
def _get_curve (self, curve_id)
 
def _merged_autoscale (self)
 
def _switch_data_plot_widget (self, plot_index, markers_on=False)
 
def _switch_plot_markers (self, markers_on)
 

Private Attributes

 _autoscale_x
 
 _autoscale_y
 
 _autoscroll
 
 _color_index
 
 _curves
 
 _data_plot_widget
 
 _layout
 
 _markers_on
 
 _plot_index
 
 _vline
 

Static Private Attributes

 _add_curve = Signal(str, str, 'QColor', bool)
 
list _colors
 
 _redraw = Signal()
 

Detailed Description

A widget for displaying a plot of data

The DataPlot widget displays a plot, on one of several plotting backends,
depending on which backend(s) are available at runtime. It currently
supports PyQtGraph, MatPlot and QwtPlot backends.

The DataPlot widget manages the plot backend internally, and can save
and restore the internal state using `save_settings` and `restore_settings`
functions.

Currently, the user MUST call `restore_settings` before using the widget,
to cause the creation of the enclosed plotting widget.

Definition at line 67 of file data_plot/__init__.py.

Constructor & Destructor Documentation

def rqt_plot.data_plot.DataPlot.__init__ (   self,
  parent = None 
)
Create a new, empty DataPlot

This will raise a RuntimeError if none of the supported plotting
backends can be found

Definition at line 125 of file data_plot/__init__.py.

Member Function Documentation

def rqt_plot.data_plot.DataPlot._do_redraw (   self)
private
Redraw the underlying plot

This causes the underlying plot to be redrawn. This is usually used
after adding or updating the plot data

Definition at line 308 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot._get_curve (   self,
  curve_id 
)
private

Definition at line 320 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot._merged_autoscale (   self)
private

Definition at line 441 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot._switch_data_plot_widget (   self,
  plot_index,
  markers_on = False 
)
private
Internal method for activating a plotting backend by index

Definition at line 167 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot._switch_plot_markers (   self,
  markers_on 
)
private

Definition at line 209 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.add_curve (   self,
  curve_id,
  curve_name,
  data_x,
  data_y 
)
Add a new, named curve to this plot

Add a curve named `curve_name` to the plot, with initial data series
`data_x` and `data_y`.

Future references to this curve should use the provided `curve_id`

Note that the plot is not redraw automatically; call `redraw()` to make
any changes visible to the user.

Definition at line 327 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.autoscroll (   self,
  enabled = True 
)
Enable or disable autoscrolling of the plot

Definition at line 301 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.clear_values (   self,
  curve_id = None 
)
Clear the values for the specified curve, or all curves

This will erase the data series associaed with `curve_id`, or all
curves if `curve_id` is not present or is None

Note that the plot is not redraw automatically; call `redraw()` to make
any changes visible to the user.

Definition at line 378 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.doSettingsDialog (   self)
Present the user with a dialog for choosing the plot backend

This displays a SimpleSettingsDialog asking the user to choose a
plot type, gets the result, and updates the plot type as necessary

This method is blocking

Definition at line 263 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.get_xlim (   self)
get X limits

Definition at line 525 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.get_ylim (   self)
get Y limits

Definition at line 540 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.getTitle (   self)
get the title of the current plotting backend

Definition at line 222 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.redraw (   self)

Definition at line 305 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.remove_curve (   self,
  curve_id 
)
Remove the specified curve from this plot

Definition at line 348 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.restore_settings (   self,
  plugin_settings,
  instance_settings 
)
Restore the settings for this widget

Currently, this just restores the plot type.

Definition at line 241 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.save_settings (   self,
  plugin_settings,
  instance_settings 
)
Save the settings associated with this widget

Currently, this is just the plot type, but may include more useful
data in the future

Definition at line 226 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.set_autoscale (   self,
  x = None,
  y = None 
)
Change autoscaling of plot axes

if a parameter is not passed, the autoscaling setting for that axis is
not changed

@param x: enable or disable autoscaling for X
@param y: set autoscaling mode for Y

Definition at line 411 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.set_xlim (   self,
  limits 
)
set X limits

Definition at line 533 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.set_ylim (   self,
  limits 
)
set Y limits

Definition at line 548 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.update_values (   self,
  curve_id,
  values_x,
  values_y,
  sort_data = True 
)
Append new data to an existing curve

`values_x` and `values_y` will be appended to the existing data for
`curve_id`

Note that the plot is not redraw automatically; call `redraw()` to make
any changes visible to the user.

If `sort_data` is set to False, values won't be sorted by `values_x`
order.

Definition at line 356 of file data_plot/__init__.py.

def rqt_plot.data_plot.DataPlot.vline (   self,
  x,
  color = RED 
)
Draw a vertical line on the plot

Draw a line a position X, with the given color

@param x: position of the vertical line to draw
@param color: optional parameter specifying the color, as tuple of
      RGB values from 0 to 255

Definition at line 397 of file data_plot/__init__.py.

Member Data Documentation

rqt_plot.data_plot.DataPlot._add_curve = Signal(str, str, 'QColor', bool)
staticprivate

Definition at line 123 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._autoscale_x
private

Definition at line 137 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._autoscale_y
private

Definition at line 138 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._autoscroll
private

Definition at line 135 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._color_index
private

Definition at line 133 of file data_plot/__init__.py.

list rqt_plot.data_plot.DataPlot._colors
staticprivate
Initial value:
1 = [Qt.blue, Qt.red, Qt.cyan, Qt.magenta, Qt.green,
2  Qt.darkYellow, Qt.black, Qt.darkCyan, Qt.darkRed, Qt.gray]

Definition at line 118 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._curves
private

Definition at line 142 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._data_plot_widget
private

Definition at line 141 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._layout
private

Definition at line 146 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._markers_on
private

Definition at line 134 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._plot_index
private

Definition at line 132 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._redraw = Signal()
staticprivate

Definition at line 122 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot._vline
private

Definition at line 143 of file data_plot/__init__.py.

tuple rqt_plot.data_plot.DataPlot.BLUE = (0, 0, 255)
static

Definition at line 112 of file data_plot/__init__.py.

tuple rqt_plot.data_plot.DataPlot.GREEN = (0, 255, 0)
static

Definition at line 111 of file data_plot/__init__.py.

rqt_plot.data_plot.DataPlot.limits_changed = Signal()
static

Definition at line 121 of file data_plot/__init__.py.

list rqt_plot.data_plot.DataPlot.plot_types
static
Initial value:
1 = [
2  {
3  'title': 'PyQtGraph',
4  'widget_class': PyQtGraphDataPlot,
5  'description':
6  'Based on PyQtGraph\n- installer: http://luke.campagnola.me/code/pyqtgraph\n',
7  'enabled': PyQtGraphDataPlot is not None,
8  },
9  {
10  'title': 'MatPlot',
11  'widget_class': MatDataPlot,
12  'description':
13  'Based on MatPlotLib\n- needs most CPU\n- needs matplotlib >= 1.1.0\n- if using '
14  'PySide: PySide > 1.1.0\n',
15  'enabled': MatDataPlot is not None,
16  },
17  {
18  'title': 'QwtPlot',
19  'widget_class': QwtDataPlot,
20  'description':
21  'Based on QwtPlot\n- does not use timestamps\n- uses least CPU\n- needs Python '
22  'Qwt bindings\n',
23  'enabled': QwtDataPlot is not None,
24  },
25  ]

Definition at line 83 of file data_plot/__init__.py.

tuple rqt_plot.data_plot.DataPlot.RED = (255, 0, 0)
static

Definition at line 110 of file data_plot/__init__.py.

int rqt_plot.data_plot.DataPlot.SCALE_ALL = 1
static

Definition at line 114 of file data_plot/__init__.py.

int rqt_plot.data_plot.DataPlot.SCALE_EXTEND = 4
static

Definition at line 116 of file data_plot/__init__.py.

int rqt_plot.data_plot.DataPlot.SCALE_VISIBLE = 2
static

Definition at line 115 of file data_plot/__init__.py.


The documentation for this class was generated from the following file:


rqt_plot
Author(s): Dorian Scholz
autogenerated on Sun Mar 17 2019 02:21:35