Private
Public Access
1
0

Merge branch 'release/v9.42'

This commit is contained in:
Sander Roosendaal
2019-03-03 21:21:16 +01:00

View File

@@ -181,7 +181,7 @@ def interactive_boxchart(datadf,fieldname,extratitle=''):
hv.extension('bokeh')
boxwhiskers = hv.BoxWhisker(datadf,'date',fieldname)
boxwhiskers.opts(tools=TOOLS)
boxwhiskers.opts(tools=TOOLS,outlier_color='white')
plot = hv.render(boxwhiskers)
@@ -329,7 +329,7 @@ def interactive_activitychart(workouts,startdate,enddate,stack='type'):
p.plot_width=550
p.plot_height=350
p.toolbar_location = None
p.sizing_mode = 'scale_width'
# p = hv.Bars(df,values='duration',
# label = CatAttr(columns=['date'], sort=False),