Private
Public Access
1
0

fix issue

This commit is contained in:
Sander Roosendaal
2021-01-10 20:25:03 +01:00
parent c54bc38866
commit e6ea368e15

View File

@@ -537,6 +537,15 @@ def interactive_boxchart(datadf,fieldname,extratitle='',
if datadf.empty:
return '','It looks like there are no data matching your filter'
columns = datadf.columns
if not fieldname in columns:
return '','It looks like there are no data matching your filter'
if not 'date' in columns:
return '','Not enough data'
tooltips = [
('Value', '@'+fieldname),
]