Private
Public Access
1
0

Rewrote interactiveplots to use timedelta everywhere for time and pace

This commit is contained in:
sanderroosendaal
2016-11-01 09:48:03 +01:00
parent 12c3ead542
commit 4dd42d43c7
5 changed files with 145 additions and 630 deletions

View File

@@ -229,22 +229,22 @@ class DataTest(TestCase):
res = iplots.interactive_chart(w.id,promember=1)
res = iplots.interactive_bar_chart(w.id)
res = iplots.interactive_bar_chart(w.id,promember=1)
res = iplots.interactive_flex_chart(w.id,promember=0,xparam='time',
res = iplots.interactive_flex_chart2(w.id,promember=0,xparam='time',
yparam1='pace',yparam2='hr')
res = iplots.interactive_flex_chart(w.id,promember=0,xparam='distance',
res = iplots.interactive_flex_chart2(w.id,promember=0,xparam='distance',
yparam1='pace',yparam2='hr')
res = iplots.interactive_flex_chart(w.id,promember=0,xparam='time',
res = iplots.interactive_flex_chart2(w.id,promember=0,xparam='time',
yparam1='pace',yparam2='spm')
res = iplots.interactive_flex_chart(w.id,promember=0,xparam='distance',
res = iplots.interactive_flex_chart2(w.id,promember=0,xparam='distance',
yparam1='pace',yparam2='spm')
res = iplots.interactive_flex_chart(w.id,promember=1,xparam='time',
res = iplots.interactive_flex_chart2(w.id,promember=1,xparam='time',
yparam1='pace',yparam2='hr')
res = iplots.interactive_flex_chart(w.id,promember=1,xparam='distance',
res = iplots.interactive_flex_chart2(w.id,promember=1,xparam='distance',
yparam1='pace',yparam2='hr')
res = iplots.interactive_flex_chart(w.id,promember=1,xparam='time',
res = iplots.interactive_flex_chart2(w.id,promember=1,xparam='time',
yparam1='pace',yparam2='spm')
res = iplots.interactive_flex_chart(w.id,promember=1,xparam='distance',
res = iplots.interactive_flex_chart2(w.id,promember=1,xparam='distance',
yparam1='pace',yparam2='spm')