diff --git a/lib/matplotlib/artist.py b/lib/matplotlib/artist.py index e6f323d4a1ce..f6e57dba512e 100644 --- a/lib/matplotlib/artist.py +++ b/lib/matplotlib/artist.py @@ -217,6 +217,13 @@ def __getstate__(self): d['stale_callback'] = None return d + def get_data_limits(self): + """ + Método genérico que retorna limites padrão. + Subclasses podem sobrescrever isso, mas por padrão não faz nada. + """ + return None + def remove(self): """ Remove the artist from the figure if possible.