diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index 4aa4b693..3250d4a1 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -2153,8 +2153,12 @@ def interactive_histoall(theworkouts,histoparam,includereststrokes, # throw out nans histopwr = histopwr[~np.isinf(histopwr)] - histopwr = histopwr[histopwr > yaxminima[histoparam]] - histopwr = histopwr[histopwr < yaxmaxima[histoparam]] + if histoparam == 'catch': + histopwr = histopwr[histopwr < yaxminima[histoparam]] + histopwr = histopwr[histopwr > yaxmaxima[histoparam]] + else: + histopwr = histopwr[histopwr > yaxminima[histoparam]] + histopwr = histopwr[histopwr < yaxmaxima[histoparam]] plot = Figure(tools=TOOLS,plot_width=900, toolbar_sticky=False,