From a4eb32f392b31a0486457fbfe99c44a16fdd9e09 Mon Sep 17 00:00:00 2001 From: Nikos Triantafyllis Date: Tue, 17 Oct 2017 16:55:31 +0300 Subject: [PATCH] fix issue comment ax.ticklabel_format in order to work --- easyplot/easyplot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easyplot/easyplot.py b/easyplot/easyplot.py index 2cf7b64..7636f8b 100644 --- a/easyplot/easyplot.py +++ b/easyplot/easyplot.py @@ -140,7 +140,7 @@ def add_plot(self, *args, **kwargs): ax, fig = self.kwargs['ax'], self.kwargs['fig'] - ax.ticklabel_format(useOffset=False) # Prevent offset notation in plots + #ax.ticklabel_format(useOffset=False) # Prevent offset notation in plots # Apply axes functions if present in kwargs for kwarg in self.kwargs: @@ -367,4 +367,4 @@ def _reset(self, reset=False): self.kwargs['fig'] = None self.kwargs['ax'] = None if reset: - self.kwargs = self._default_kwargs.copy() \ No newline at end of file + self.kwargs = self._default_kwargs.copy()