Fix lines appearing on waveform plots after zoom
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
Filter activity
requested review from @ldam
268 270 DataTypeModel.__init__.mass_pos_data[key][chan_id] 269 271 :param chan_id: str - name of channel 270 272 """ 273 times: np.ndarray = c_data['times'] 274 data: np.ndarray = c_data['data'] 275 sorted_index = times.argsort() 276 times = times[sorted_index] 277 data = data[sorted_index] 278 c_data['times'] = times 279 c_data['data'] = data - Comment on lines +273 to +279
This might resolve the extra line but it clear out overlapped data which user need to see. I think the way we treat data by merging it isn't a good way. If we can plot each trace separately it would be better not just with wave form but with soh as well. I don't know how it affect the plotting performance. If you have time, you can try it or I will work on it when I finish with my MRs.
The useful functionalities implemented in this merge request is included in !88 (merged), so this merge request can be closed.
removed review request for @ldam