-
Notifications
You must be signed in to change notification settings - Fork 14
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
Redraw the whole graph? #8
Comments
I'm pretty sure you want to use command line option -s (scrolling) to achieve what you're after. Keep in mind it will only scroll after a certain number of records have been reached. Thanks, |
No, not really :) I've tried both with and without But there's no way to display only one chart not joining / adding the updates with the previous chart. If this But as of now I don't really see a way to achieve that :) (Sorry for probably not being clear enough, but may be the screenshots above could help :) |
I thinking I see what you’re getting at . you want to update data from the past, not just the new data fed to the end of the chart. I have not looked into the u der lying code, but perhaps a Marge or patch is possible into the gui layer ? may the data layer you probably want a mixer that gets all data events and then place old data into the right place that the gui needs. |
@gedw99, thank you for your interest!
Mmm... not really, as far as I understand you :) As of now, when the data is read for the first time, What I suggest, however, is always to draw one chart at a time on a screen:
Hope it makes more sense now :) |
(Sorry in advance for being a bit slow and probably noisy :)
As I understand, when
datadash
gets the new data from STDIN, it draws a new graph and adds it alongside the previous one, thus creating something like a "tape" (similar to an electrocardiogram, for instance).But what if we'd have an option to redraw the graph completely, so that only the new data would be added (and the missing data – if any – would be removed)?
So, that instead
...we'd get
Or, may be an option limiting the number of these graphs on the screen? Like, if set to 1, then only the latest graph will be drawn (and if set to 2, then no more than 2 graphs will be displayed, like in the example above).
Again, I do apologise if this is already possible (or if this is out of the scope of this project), just couldn't figure out how to achieve it, and thought that may be it could be a useful addition.
Thank you :)
The text was updated successfully, but these errors were encountered: