(self,plot_id,data_label,xdata,ydata)
| 82 | self._ydata_list[plot_index][dataset_index] = self._ydata_list[plot_index][dataset_index][start_index:] |
| 83 | |
| 84 | def set_plot_data(self,plot_id,data_label,xdata,ydata): |
| 85 | plot_index = self._plot_dict[plot_id] |
| 86 | dataset_index = self._data_line_labels[plot_index][data_label] |
| 87 | self._xdata_list[plot_index][dataset_index] = xdata |
| 88 | self._ydata_list[plot_index][dataset_index] = ydata |
| 89 | self._window_length_list[plot_index] = len(self._xdata_list[plot_index][dataset_index]) |
| 90 | |
| 91 | def set_window_length(self, plot_id, window_length): |
| 92 | self._window_length_list[plot_id] = window_length |
nothing calls this directly
no outgoing calls
no test coverage detected