WIP: Plot estimated 1rm on graphs as well, perhaps add another graph with graph options(reps, weight, 1rms etc)

This commit is contained in:
Peter Stockings
2023-04-02 23:02:51 +10:00
parent 48099fcbd9
commit d44582d2a2
2 changed files with 18 additions and 2 deletions

View File

@@ -189,6 +189,13 @@
name: 'Weight',
yaxis: 'y2',
type: 'scatter'
},
{
x: {{ exercise_graph['StartDates'] | replace('"', "'") | safe }},
y: {{ exercise_graph['Estimated1RM'] | replace('"', "'") | safe }},
name: 'Estimated 1RM',
yaxis: 'y3',
type: 'scatter'
}
],
{
@@ -198,7 +205,16 @@
yaxis2: {
title: 'Weight',
overlaying: 'y',
side: 'right', showgrid: false
side: 'right',
showgrid: false,
position: 0.96
},
yaxis3: {
title: 'Estimated 1RM',
overlaying: 'y',
side: 'right',
showgrid: false,
position: 1.00
}
}, config);
</script>