diff --git a/sohstationviewer/view/plotting/plotting_widget/plotting.py b/sohstationviewer/view/plotting/plotting_widget/plotting.py
index d576b131be31f5dc00624fa68aaffe6db85923f3..7eabd46ff7d680927b4648c6eac01e5f524637e0 100644
--- a/sohstationviewer/view/plotting/plotting_widget/plotting.py
+++ b/sohstationviewer/view/plotting/plotting_widget/plotting.py
@@ -108,7 +108,6 @@ class Plotting:
 
         total_samples = len(x)
 
-        x = sorted(x)
         if len(colors) != 1:
             sample_no_colors = [clr['W']]
         else:
@@ -118,7 +117,7 @@ class Plotting:
             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
+            ax.x_list = c_data['times']
         else:
             ax.linkedX = x
         ax.chan_db_info = chan_db_info
@@ -182,8 +181,8 @@ class Plotting:
             sample_no_pos=[0.25, 0.75],
             chan_db_info=chan_db_info, linked_ax=linked_ax)
 
-        ax.x0 = points_list[0]
-        ax.x1 = points_list[1]
+        ax.x0 = np.array(points_list[0])
+        ax.x1 = np.array(points_list[1])
 
         ax.chan_db_info = chan_db_info
         return ax