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

remove ax.linkedX for now because there is no use for it then add it back latter if needed

parent 3f5fd2e6
No related branches found
No related tags found
1 merge request!147Remove noneed plotting code
Pipeline #2783 passed with stage
in 2 minutes and 51 seconds
......@@ -117,10 +117,7 @@ class Plotting:
self.plotting_axes.set_axes_info(
ax, [total_samples], sample_no_colors=sample_no_colors,
chan_db_info=chan_db_info, linked_ax=linked_ax)
if linked_ax is None:
ax.x = x
else:
ax.linkedX = x
ax.x = x
ax.chan_db_info = chan_db_info
return ax
......@@ -182,10 +179,7 @@ class Plotting:
sample_no_colors=[clr[colors[0]], clr[colors[1]]],
sample_no_pos=[0.25, 0.75],
chan_db_info=chan_db_info, linked_ax=linked_ax)
if linked_ax is None:
ax.x = x
else:
ax.linkedX = x
ax.x = x
ax.chan_db_info = chan_db_info
return ax
......@@ -225,10 +219,7 @@ class Plotting:
linestyle='', zorder=constants.Z_ORDER['LINE'],
color=clr[color], picker=True,
pickradius=3)
if linked_ax is None:
ax.x_list = x_list
else:
ax.linkedX = x_list
ax.x_list = x_list
ax.chan_db_info = chan_db_info
return ax
......@@ -313,12 +304,8 @@ class Plotting:
mec=clr[d_color],
picker=True, pickradius=3)
if linked_ax is None:
ax.x_list = x_list
ax.y_list = y_list
else:
ax.linkedX = x_list
ax.linkedY = y_list
ax.x_list = x_list
ax.y_list = y_list
ax.chan_db_info = chan_db_info
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