Private
Public Access
1
0

execution chart without plan

This commit is contained in:
Sander Roosendaal
2019-10-05 15:07:25 +02:00
parent c12a2c8fe3
commit db4465512c
3 changed files with 76 additions and 31 deletions

View File

@@ -242,6 +242,9 @@ def interactive_planchart(data,startdate,enddate):
yaxmaximum = data['executed'].max()
if data['planned'].max() > yaxmaximum:
yaxmaximum = data['planned'].max()
if yaxmaximum == 0:
yaxmaximum = 250
yrange1 = Range1d(start=0,end=1.1*yaxmaximum)