diff --git a/rowers/forms.py b/rowers/forms.py index 3376dc36..c69e3720 100644 --- a/rowers/forms.py +++ b/rowers/forms.py @@ -1870,14 +1870,6 @@ class ForceCurveOptionsForm(forms.Form): notes = forms.CharField(initial="", label='notes', widget=HiddenInput, required=False) - plotchoices = ( - ('line', 'Force Curve Collection Plot'), - ('scatter', 'Peak Force Scatter Plot'), - ('none', 'Only aggregrate data') - ) - plottype = forms.ChoiceField(choices=plotchoices, initial='line', - label='Individual Stroke Chart Type') - name = forms.CharField(initial="", label='Name',required=False) diff --git a/rowers/interactiveplots.py b/rowers/interactiveplots.py index 1e14f767..f8f8a5e0 100644 --- a/rowers/interactiveplots.py +++ b/rowers/interactiveplots.py @@ -534,7 +534,7 @@ def interactive_forcecurve(theworkouts, workstrokesonly=True, plottype='scatter' columns = ['catch', 'slip', 'wash', 'finish', 'averageforce', 'peakforceangle', 'peakforce', 'spm', 'distance', - 'workoutstate', 'driveenergy'] + 'workoutstate', 'driveenergy', 'cumdist'] rowdata = dataprep.getsmallrowdata_db(columns, ids=ids, workstrokesonly=workstrokesonly) diff --git a/rowers/templates/forcecurve_single.html b/rowers/templates/forcecurve_single.html index f5da7253..f3251dba 100644 --- a/rowers/templates/forcecurve_single.html +++ b/rowers/templates/forcecurve_single.html @@ -25,8 +25,8 @@