diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index 5356755c..bc5cc083 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -2107,7 +2107,9 @@ def interactive_histoall(theworkouts, histoparam, includereststrokes, histopwr = histopwr[histopwr > yaxminima[histoparam]] histopwr = histopwr[histopwr < yaxmaxima[histoparam]] - data_dict = {"data": histopwr.tolist()} + data_dict = {"data": histopwr.tolist(), + "metric": metricsdicts[histoparam]["verbose_name"]} + print(data_dict) script, div = get_chart("/histogram", data_dict, debug=False) return script, div