Private
Public Access
1
0

improved callout on trend flex

This commit is contained in:
Sander Roosendaal
2017-08-04 10:25:49 +02:00
parent d7a1cef4e8
commit e673255f43
3 changed files with 19 additions and 0 deletions

View File

@@ -1331,11 +1331,16 @@ def interactive_multiflex(datadf,xparam,yparam,groupby,extratitle='',
hover = HoverTool(names=['data'],
tooltips = [
(groupby,'@groupval{1.1}'),
(xparamname,'@x{1.1}'),
(yparamname,'@y')
])
else:
hover = HoverTool(names=['data'],
tooltips = [
(groupby,'@groupval'),
(xparamname,'@x{1.1}'),
(yparamname,'@y')
,
])
hover.mode = 'mouse'