Private
Public Access
1
0

better filtering

This commit is contained in:
Sander Roosendaal
2019-11-18 16:55:29 +01:00
parent 4508c75eee
commit 3940b66b50
2 changed files with 5 additions and 8 deletions

View File

@@ -2956,15 +2956,12 @@ def interactive_chart_video(videodata):
data = zip(time,spm)
data2 = []
data2 = "["
for t,s in data:
data2.append(
{
'x':t,
'y':s,
}
)
data2 += "{x: %s, y: %s}, " % (t,s)
data2 = data2[:-2] + "]"
markerpoint = {
'x': time[0],