progress plot: always use y range 0..1

Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
Csaba Kiraly 2024-03-22 15:30:26 +01:00
parent 1303229026
commit d63a20bb23
No known key found for this signature in database
GPG Key ID: 0FE274EE8C95166E
1 changed files with 1 additions and 5 deletions

View File

@ -782,11 +782,7 @@ class Visualizor:
conf["data"] = [vector1, vector2, vector3]
conf["xdots"] = [x*self.config.stepDuration for x in range(len(vector1))]
conf["path"] = plotPath+"/nodesReady.png"
maxi = 0
for v in conf["data"]:
if max(v) > maxi:
maxi = max(v)
conf["yaxismax"] = maxi
conf["yaxismax"] = 1
plotData(conf)
print("Plot %s created." % conf["path"])