Private
Public Access
1
0

Merge branch 'release/v12.50'

This commit is contained in:
Sander Roosendaal
2020-05-23 14:56:58 +02:00

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)