diff --git a/full-requirements.txt b/full-requirements.txt
index efc9f6d88d8dd02dcbb1711466aec0d6c34c54d2..d8d85e3afec569bf9c3b98df171794f0f61d9586 100644
--- a/full-requirements.txt
+++ b/full-requirements.txt
@@ -4,7 +4,7 @@ PyQt5-sip==12.12.2
 PyQtWebEngine==5.15.6
 QScintilla>=2.14.1
 pyqtgraph>=0.12.1
-matplotlib>=3.4.1
+matplotlib>=3.7.1
 numpy>=1.24.2
 colorama>=0.4.3
 pyinstaller>=5.11.0
diff --git a/requirements.txt b/requirements.txt
index 23b82bb132177213722e5ceb3f63b9a4dc83d9a3..c71a8a6dcad2b36f5b3a94a52f5190b1a8f5ebf9 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -4,7 +4,7 @@ PyQt5-sip==12.12.2
 #PyQtWebEngine==5.15.6
 QScintilla>=2.14.1
 pyqtgraph>=0.12.1
-matplotlib>=3.4.1
+matplotlib>=3.7.1
 numpy>=1.24.2
 colorama>=0.4.3
 pyinstaller>=5.11.0
diff --git a/src/View/BoundaryCondition/Edit/Plot.py b/src/View/BoundaryCondition/Edit/Plot.py
index bb4a65a35715df6e98ebc0e5db347b2790d9bc82..09310bd6fbb738b28b79bf9ef13b55bcbbb20e66 100644
--- a/src/View/BoundaryCondition/Edit/Plot.py
+++ b/src/View/BoundaryCondition/Edit/Plot.py
@@ -47,99 +47,59 @@ class Plot(PamhyrPlot):
         )
 
         self._table_headers = self._trad.get_dict("table_headers")
+
+        header = self.data.header
+        self.label_x = self._table_headers[header[0]]
+        self.label_y = self._table_headers[header[1]]
+
         self._mode = mode
+        self._isometric_axis = False
+
 
     def custom_ticks(self):
         if self.data.header[0] != "time":
             return
 
-        t0 = datetime.fromtimestamp(0)
-        nb = len(self.data.data)
-        mod = int(nb / 5)
-        mod = mod if mod > 0 else nb
-
-        fx = list(
-            map(
-                lambda x: x[1],
-                filter(
-                    lambda x: x[0] % mod == 0,
-                    enumerate(self.data.data)
-                )
-            )
-        )
-        xx = list(map(lambda v: v[0], fx))
-        if self._mode == "time":
-            xt = list(
-                map(
-                    lambda v: str(
-                        datetime.fromtimestamp(v[0]) - t0
-                    ).split(",")[0]
-                    .replace("days", _translate("BoundaryCondition", "days"))
-                    .replace("day", _translate("BoundaryCondition", "day")),
-                    fx
-                )
-            )
-        else:
-            xt = list(
-                map(
-                    lambda v: str(datetime.fromtimestamp(v[0]).date()),
-                    fx
-                )
-            )
-
-        self.canvas.axes.set_xticks(ticks=xx, labels=xt, rotation=45)
+        self.set_ticks_time_formater()
 
     @timer
     def draw(self):
-        self.canvas.axes.cla()
-        self.canvas.axes.grid(color='grey', linestyle='--', linewidth=0.5)
+        self.init_axes()
 
         if len(self.data) == 0:
             self._init = False
             return
 
+        self.draw_data()
+        self.custom_ticks()
+
+        self.idle()
+        self._init = True
+
+    def draw_data(self):
         # Plot data
         x = list(map(lambda v: v[0], self.data.data))
         y = list(map(lambda v: v[1], self.data.data))
+
         self._line, = self.canvas.axes.plot(
             x, y,
-            color='r', lw=1.,
-            markersize=5, marker='+',
-            picker=30,
+            color=self.color_plot,
+            **self.plot_default_kargs
         )
 
-        self.custom_ticks()
-
-        # Plot label
-        header = self.data.header
-        self.canvas.axes.set_xlabel(
-            self._table_headers[header[0]], color='black', fontsize=10
-        )
-        self.canvas.axes.set_ylabel(
-            self._table_headers[header[1]], color='black', fontsize=10
-        )
-
-        self.canvas.axes.autoscale_view(True, True, True)
-        self.canvas.figure.tight_layout()
-        self.canvas.figure.canvas.draw_idle()
-        # self.toolbar.update()
-
-        self._init = True
-
     @timer
     def update(self, ind=None):
         if not self._init:
             self.draw()
             return
 
+        self.update_data()
+        self.custom_ticks()
+
+        self.update_idle()
+
+    def update_data(self):
         x = list(map(lambda v: v[0], self.data.data))
         y = list(map(lambda v: v[1], self.data.data))
 
         self._line.set_data(x, y)
-
-        self.custom_ticks()
-
-        self.canvas.axes.relim()
-        self.canvas.axes.autoscale()
-        self.canvas.figure.tight_layout()
-        self.canvas.figure.canvas.draw_idle()
diff --git a/src/View/BoundaryCondition/Edit/Table.py b/src/View/BoundaryCondition/Edit/Table.py
index 617bbc73918f3eba793e773fa57b36ce89209657..287a8fe42608c186849a2ab028dd139b56ce90ac 100644
--- a/src/View/BoundaryCondition/Edit/Table.py
+++ b/src/View/BoundaryCondition/Edit/Table.py
@@ -21,7 +21,11 @@ import traceback
 
 from datetime import date, time, datetime, timedelta
 
-from tools import trace, timer
+from tools import (
+    trace, timer,
+    timestamp_to_old_pamhyr_date,
+    old_pamhyr_date_to_timestamp
+)
 
 from View.Tools.PamhyrTable import PamhyrTableModel
 
@@ -70,9 +74,7 @@ class TableModel(PamhyrTableModel):
                 value = f"{v:.4f}"
             elif self._data.header[column] == "time":
                 if self._opt_data == "time":
-                    t0 = datetime.fromtimestamp(0)
-                    t = datetime.fromtimestamp(v)
-                    value = str(t - t0)
+                    value = timestamp_to_old_pamhyr_date(int(v))
                 else:
                     value = str(datetime.fromtimestamp(v))
             else:
diff --git a/src/View/Tools/PamhyrPlot.py b/src/View/Tools/PamhyrPlot.py
index 5d39881524b91bfe680a3df8cc79dafb2e3354f4..f3b9763147354fc2ec868107c43574821f3af96e 100644
--- a/src/View/Tools/PamhyrPlot.py
+++ b/src/View/Tools/PamhyrPlot.py
@@ -17,6 +17,9 @@
 # -*- coding: utf-8 -*-
 
 import matplotlib.colors as mplcolors
+from matplotlib import ticker
+
+from tools import timestamp_to_old_pamhyr_date
 
 from View.Tools.Plot.APlot import APlot
 from View.Tools.Plot.PamhyrCanvas import MplCanvas
@@ -184,3 +187,13 @@ class PamhyrPlot(APlot):
     def toolbar_update(self):
         if self._toolbar is not None:
             self._toolbar.update()
+
+    def set_ticks_time_formater(self):
+        self.canvas.axes.xaxis.set_major_formatter(
+            lambda x, pos: timestamp_to_old_pamhyr_date(int(x))
+        )
+
+        self.canvas.axes.tick_params(
+            labelsize=9,
+            labelrotation=45
+        )
diff --git a/src/tools.py b/src/tools.py
index 98fae105f5d150eee7be9c5bc10cbfee091964f3..841a4c0aa4fd58e87fc17de77010bed86e9564b1 100644
--- a/src/tools.py
+++ b/src/tools.py
@@ -21,7 +21,7 @@ import time
 import logging
 import traceback
 
-from datetime import datetime
+from datetime import datetime, timedelta
 from pathlib import Path
 
 from colorama import Fore
@@ -251,6 +251,21 @@ def old_pamhyr_date_to_timestamp(date: str):
     return ts
 
 
+def timestamp_to_old_pamhyr_date(time:int):
+    t0 = datetime.fromtimestamp(0)
+    t = datetime.fromtimestamp(time)
+
+    dt = t - t0
+    hours = dt.seconds // 3600
+    minutes = (dt.seconds % 3600) // 60
+    seconds = dt.seconds % 60
+
+    s = f"{dt.days:>3}:{hours:>2}:{minutes:>2}:{seconds:>2}"
+    s = s.replace(" ", "0")
+
+    return s
+
+
 #######################
 # COMMAND LINE PARSER #
 #######################