11-21-2018 09:09 AM
Hello,
I would like to show some tiny "sparkline" trends in Labview for several of my analog values. Is there a good way to do this?
https://en.wikipedia.org/wiki/Sparkline
http://www.practicaldb.com/data-visualization-consulting/sparklines/
thank you
Solved! Go to Solution.
11-21-2018 09:21 AM - edited 11-21-2018 09:22 AM
Hi downerdce,
1. create a graph on your front panel
2. hide the axes
3. format background (and all other stuff) as needed
4. change the graph size as needed
5. plot your data: one plot for the line, a 2nd plot for the "spark" dot…
11-21-2018 09:41 AM - edited 11-21-2018 09:45 AM
Your table as an array of cluster, and inside of the cluster you put your customized graphs (open properties 😉 )
here is a quick draft:
A two (or more color) graph is done with a 2D array where each line is one color (defined by the properties) and each column contains one to show value at the color line and all others are NAN values ...
Edit: And just in case I swapped line/columns ... insert a transpose 2D array vi 😄
11-21-2018 10:01 AM - edited 11-21-2018 10:02 AM
update 🙂 including Gerds idea for the dot...
11-21-2018 11:30 AM
These examples are fantastic! Thank you all very much!