Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

linestreaming.append() index parameter doesn't appear to work as expected #33

Open
garyevans opened this issue Sep 23, 2015 · 0 comments

Comments

@garyevans
Copy link

Python Client

When appending to a successful initial linestreaming plot, the graph doesn't update.
Take the online demo from the project page, when I add the following the index from the initial plot works, but then the append fails to update.

lgn = Lightning()

series = random.randn(5,10)
idx = list(range(21,31))
viz = lgn.linestreaming(series,idx)

i=30
for _ in range(100):
i=i+1
viz.append(random.randn(5, 1),list([i]))

I have tried the append index parameter with non list value and a list the same length as the width, but get the same result.

Cheers
Gary

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant