Add "step" option for low density rendering mode in Signal plots
See original GitHub issueFeatures Suggestion
Hi Scott, it would be great to have a function:
public SignalPlotConstStep<T> AddSignalConstStep<T>(T[] ys, double sampleRate = 1, Color? color = null, string label = null) where T : struct, IComparable;
similar to AddScatterStep(...)
. I know AddScatterStep()
can already do the job. But if I understand correctly the AddSignalConst
is much faster in case of high number of data points. So, I was wondering if we can do exactly as AddSignalConst
to maintain performance but plot it as step.
I work with microcontrollers and there the signals are discrete, so it would be ideal to display them as steps. Do you think it would be much effort to achieve something like this?
AddSignalConst
AddSignalConstStep
(Suggested feature)
Issue Analytics
- State:
- Created 2 years ago
- Comments:14 (14 by maintainers)
Top Results From Across the Web
ScottPlot 4.1 Cookbook
SignalConst - SignalConst plots pre-processes data to render much faster than Signal plots. ... Ruler mode is an alternative way to display axis...
Read more >Virtuoso Visualization and Analysis XL User Guide
signal destination, see step 2 in Selecting and Plotting Signals in a Data Range on page 48. Appending to a Graph. You can...
Read more >ScottPlot 4.0.47 Cookbook
SignalConst plots pre-processes data to render much faster than Signal plots. Pre-processing takes a little time up-front and requires 4x the memory of...
Read more >Check Step Response Characteristics
You can add Check Step Response Characteristics blocks to multiple signals to check that they satisfy the bounds. You can also plot the...
Read more >Using Stepchart
Stepchart measures the tonal response, noise, dynamic range, and ISO sensitivity of digital cameras and scanners using. Reflective grayscale step charts ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is exactly what I needed.
Yep, that did the trick.