Set plotting status on for all lines.
(self, option=True)
| 172 | self.update_norm() |
| 173 | |
| 174 | def turn_on_all(self, option=True): |
| 175 | """ |
| 176 | Set plotting status on for all lines. |
| 177 | """ |
| 178 | if option is True: |
| 179 | _plot = option |
| 180 | else: |
| 181 | _plot = False |
| 182 | for v in self.element_dict.values(): |
| 183 | v.status = _plot |
| 184 | |
| 185 | def delete_peaks_below_threshold(self, threshv=0.1): |
| 186 | """ |
no test coverage detected