Unlock yaxes min limit and allow free value

Change-Id: Id942bfc9e06ad2b78bb8243ac06a089f6f2ab074
This commit is contained in:
Fabien Boucher 2018-02-15 16:24:34 +01:00
parent 80fd8c8fe1
commit 28bbece7ae
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ class Graph(Base):
v.Optional('format', default='short'): y_format,
v.Optional('label', default=''): v.All(str),
v.Optional('logBase', default=1): v.All(int, v.Range(min=1)),
v.Optional('max'): v.All(int, v.Range(min=1)),
v.Optional('min'): v.All(int, v.Range(min=1)),
v.Optional('max'): v.All(int),
v.Optional('min'): v.All(int),
v.Optional('show', default=True): v.All(bool),
}
]