Skip to content
Snippets Groups Projects
Commit 61213ec5 authored by Lan Dam's avatar Lan Dam
Browse files

change plot_multi_color_dots x to x_list, add x0, x1 to plot_up_down_dots

parent fa566097
No related branches found
No related tags found
3 merge requests!149Fix bug happen when zooming in overlap section,!148fix zooming, order, y for the combination of 2 channels GPS_lk_Unlk and GPS_clock_power,!145Change to use matplotlib's lim for zooming
...@@ -108,7 +108,6 @@ class Plotting: ...@@ -108,7 +108,6 @@ class Plotting:
total_samples = len(x) total_samples = len(x)
x = sorted(x)
if len(colors) != 1: if len(colors) != 1:
sample_no_colors = [clr['W']] sample_no_colors = [clr['W']]
else: else:
...@@ -118,7 +117,7 @@ class Plotting: ...@@ -118,7 +117,7 @@ class Plotting:
ax, [total_samples], sample_no_colors=sample_no_colors, ax, [total_samples], sample_no_colors=sample_no_colors,
chan_db_info=chan_db_info, linked_ax=linked_ax) chan_db_info=chan_db_info, linked_ax=linked_ax)
if linked_ax is None: if linked_ax is None:
ax.x = x ax.x_list = c_data['times']
else: else:
ax.linkedX = x ax.linkedX = x
ax.chan_db_info = chan_db_info ax.chan_db_info = chan_db_info
...@@ -182,8 +181,8 @@ class Plotting: ...@@ -182,8 +181,8 @@ class Plotting:
sample_no_pos=[0.25, 0.75], sample_no_pos=[0.25, 0.75],
chan_db_info=chan_db_info, linked_ax=linked_ax) chan_db_info=chan_db_info, linked_ax=linked_ax)
ax.x0 = points_list[0] ax.x0 = np.array(points_list[0])
ax.x1 = points_list[1] ax.x1 = np.array(points_list[1])
ax.chan_db_info = chan_db_info ax.chan_db_info = chan_db_info
return ax return ax
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment