Graphical icon indicating copy to clipboard operation
Graphical copied to clipboard

Streamed datapoints?

Open felixfbecker opened this issue 7 years ago • 2 comments

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.

felixfbecker avatar Aug 09 '18 20:08 felixfbecker

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

My-Random-Thoughts avatar Sep 05 '19 19:09 My-Random-Thoughts

Hey, I'd love to have this feature as well to display some live graphs and am taking a shot at implementing it. https://github.com/michaelkargl/Graphical/issues/2

michaelkargl avatar Dec 08 '20 22:12 michaelkargl