Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2020-05-23 14:56:37 +02:00
parent 66052d40c5
commit e44f6b3ef7

View File

@@ -5216,7 +5216,10 @@ def interactive_multiple_compare_chart(ids,xparam,yparam,plottype='line',
hover.tooltips = TIPS
if labeldict:
legend=labeldict[id]
try:
legend=labeldict[id]
except KeyError:
legend = str(id)
else:
legend=str(id)