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

Streamed datapoints? #11

Open
felixfbecker opened this issue Aug 9, 2018 · 2 comments
Open

Streamed datapoints? #11

felixfbecker opened this issue Aug 9, 2018 · 2 comments

Comments

@felixfbecker
Copy link

Currently I am using Clear-Host and draw the graph again with an additional data point when I want to display live data. It works quite well, but it flickers a bit. What would be really awesome is if I could pipe a stream of data points into Show-Graph and it would add data points to the graph as they come in.

@My-Random-Thoughts
Copy link

One option to avoid the Clear-Host is to move the cursor position back to the top left of the graph. Something like:

    $origpos = $host.UI.RawUI.CursorPosition
    {draw-graph here}
    $host.UI.RawUI.CursorPosition = $origpos

@michaelkargl
Copy link

Hey, I'd love to have this feature as well to display some live graphs and am taking a shot at implementing it.
michaelkargl#2

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

3 participants