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() | |
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.
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.
|
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.
|
private |
Definition at line 324 of file data_plot/__init__.py.
|
private |
Definition at line 445 of file data_plot/__init__.py.
|
private |
Internal method for activating a plotting backend by index
Definition at line 167 of file data_plot/__init__.py.
|
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 331 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 382 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 529 of file data_plot/__init__.py.
def rqt_plot.data_plot.DataPlot.get_ylim | ( | self | ) |
get Y limits
Definition at line 544 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 352 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 415 of file data_plot/__init__.py.
def rqt_plot.data_plot.DataPlot.set_xlim | ( | self, | |
limits | |||
) |
set X limits
Definition at line 537 of file data_plot/__init__.py.
def rqt_plot.data_plot.DataPlot.set_ylim | ( | self, | |
limits | |||
) |
set Y limits
Definition at line 552 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 360 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 401 of file data_plot/__init__.py.
|
staticprivate |
Definition at line 123 of file data_plot/__init__.py.
|
private |
Definition at line 137 of file data_plot/__init__.py.
|
private |
Definition at line 138 of file data_plot/__init__.py.
|
private |
Definition at line 135 of file data_plot/__init__.py.
|
private |
Definition at line 133 of file data_plot/__init__.py.
|
staticprivate |
Definition at line 118 of file data_plot/__init__.py.
|
private |
Definition at line 142 of file data_plot/__init__.py.
|
private |
Definition at line 141 of file data_plot/__init__.py.
|
private |
Definition at line 146 of file data_plot/__init__.py.
|
private |
Definition at line 134 of file data_plot/__init__.py.
|
private |
Definition at line 132 of file data_plot/__init__.py.
|
staticprivate |
Definition at line 122 of file data_plot/__init__.py.
|
private |
Definition at line 143 of file data_plot/__init__.py.
|
static |
Definition at line 112 of file data_plot/__init__.py.
|
static |
Definition at line 111 of file data_plot/__init__.py.
|
static |
Definition at line 121 of file data_plot/__init__.py.
|
static |
Definition at line 83 of file data_plot/__init__.py.
|
static |
Definition at line 110 of file data_plot/__init__.py.
|
static |
Definition at line 114 of file data_plot/__init__.py.
|
static |
Definition at line 116 of file data_plot/__init__.py.
|
static |
Definition at line 115 of file data_plot/__init__.py.