Private
Public Access
1
0

Merge branch 'release/v15.05'

This commit is contained in:
Sander Roosendaal
2021-01-10 20:31:39 +01:00

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),
]