diff --git a/philosopher_example/controleurPhilosophersExample.py b/philosopher_example/controleurPhilosophersExample.py
index 6e6fe56003732185ab5c3e2d145246323cf179b4..b8bdbe07c700178b3b41fbf56d66aaf2bc518ed4 100644
--- a/philosopher_example/controleurPhilosophersExample.py
+++ b/philosopher_example/controleurPhilosophersExample.py
@@ -13,10 +13,10 @@ class ControleurPhilosophersExample(Controleur):
         self.__numberPhilosopher = 10
         self.__barChart = []
         self.__barChart.append(self.addBarChart('Eaten Pastas'))
-        self.__barChart.append(self.addPlotChart('Hours of tkinking'))
+        self.__barChart.append(self.addLimitedPlotChart('Hours of tkinking',5))
         self.setPolicy(self.__barChart[1],0,"ro")
 
-        self.__barChart.append(self.addLimitedPlotChart('Hours of hunger',100))
+        self.__barChart.append(self.addLimitedPlotChart('Hours of hunger',5))
         self.addCurve(self.__barChart[2],'g+-')
 
     def initialisation(self):