Private
Public Access
1
0

small fixes

This commit is contained in:
Sander Roosendaal
2022-10-23 15:40:56 +02:00
parent 086b1f9f1f
commit bad7978e6f
2 changed files with 18 additions and 2 deletions

View File

@@ -4197,7 +4197,10 @@ def instroke_interactive_chart(df,metric, workout, spm_min, spm_max,
df_plot['high'].update(df_plot.pop('high 2'))
df_plot['low'].update(df_plot.pop('low 2'))
df_plot.interpolate(axis=1,inplace=True)
try:
df_plot.interpolate(axis=1,inplace=True)
except TypeError:
pass
TOOLS = 'save,pan,box_zoom,wheel_zoom,reset,tap,crosshair'
plot = Figure(plot_width=920,tools=TOOLS,