Scroll between plots on a graph, while VI runs

Hi,
While running a VI, the graph is totally inactive. I would like to see the different plots, so I would like to scroll between plots, while the VI is running. Is there any possibility to do that?
Thanks,
Ussr123

 Maybe you could play with one listbox (user-friendly IMO) where the selected item index will determine the "plot" to be shown. Q&D (mean quick and dirty) solution attached (2013 version)
"In theory, theory and practice are the same. In practice, they’re not."
Attachments:
Q&D - Visible Plots.vi ‏17 KB

Similar Messages

  • How to create an image that when scrolled over automatically scrolls between 3 image

    What i am trying or rather what i want to achive is, when an image is scrolled over it automaticly scrolls between 3 pictures and when it is rolled off of goes back to a specific image. How do i do something like this i know its going to have to be a javascript item, but how do i do it?

    Hi Gramps,
    Welcome back. Haven't seen you around for a while.
    Please have a look here and tell us if there is a script that comes close to what you want.
    Did you forget to add something?
    Nancy O.

  • Disable trace on graph while running

    Hi,
    How can I do to simply disable one over multiple trace on a graph while running ?
    Thanks.

    You could select a point plot and point style no point and the trace disappears. You can do this manually during runtime or do it using property nodes.
    Or you could delete the trace from the array.
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

  • How to build query to give daily balance across bank accounts? (to then plot in a graph)

    How would one build a query to give daily balance across bank accounts? (to then plot in a graph)
    Assumptions:
    * There is a table TRANSACTIONS which includes columns TRANS_DATE, AMOUNT and BANK_ID. It does NOT include a column for balance. So current balance for a bank account is the sum of the AMOUNTs for that BANK_ID for example. Balance on date XX will be the sum
    of all AMOUNTS for that BANK_ID for all TRANS_DATE's prior and including the date XX.
    * There is not necessarily transactions on every day for each bank
    * Table BANKS which has BANK_ID and TITLE
    Would like a query that gives: Supply StartDate and EndDate for the query:
    Date Bank1Balance Bank2Balance Bank3Balance TotalBalance
    1/1/15 $100 $200 $100 $400
    1/2/15 $200 $200 $100 $500
    etc

    You'll find examples of queries for computing balances in various contexts in Balances.zip in my public databases folder at:
    https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
    If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
    The queries in this little demo file return balances per transaction, however, whereas you appear to wish to return balances at close of business per day.  This can easily be done by means of a subquery which sums all transactions to date.  To return
    balances for all dates regardless of whether or not any transactions have been undertaken on the day, an auxiliary calendar table can be introduced into the database to plug the gaps,  The Calendar.zip file in my same OneDrive folder has means of generating
    such a table.
    With the introduction of an auxiliary calendar table into the database a query can then be written to return the balance per customer at close of business per day over the period 2009 - 2012 covered by the data in the Transactions table:
    SELECT CustomerID, Firstname, LastName, calDate,
       (SELECT SUM(TransactionAmount)
         FROM Transactions
         WHERE Transactions.CustomerID = Customers.CustomerID
         AND Transactions.TransactionDate <= Calendar.calDate) AS Balance
    FROM Calendar,Customers
    WHERE calDate BETWEEN #2009-01-01# AND #2012-12-31#
    ORDER BY CustomerID, CalDate;
    Rows for each customer/date are returned by means of the Cartesian product of the Calendar and Customers tables (the latter analogous to your Banks table), and the subquery returns the balance at close of each day by correlating the Transactions table with
    the Customers and Calendar tables, returning the sum of all transactions per customer up to and including the date in question.  In this example credit and debit transactions are expressed as positive and negative values in a single column of course,
    but where separate credit and debit columns are used its merely a case of summing (Credit-Debit), as done in some of the examples in my demo.
    To return the data in a horizontal format per date I'd suggest the use of a report which returns one row per date, and within it a multi-column subreport in across-then down column layout, linking the subreport to the parent report on the date columns.
    Ken Sheridan, Stafford, England

  • Plotting on Log graph

    Good Day,
    I am plotting a semilog graph displayed on the front panel of my program.
    The unit on the x-axis is in frequency(Hz) and the y-axis is in dBc/Hz
    I wanted to program in such a way that the a straight line is plot between points at 10,100,1K,10K and 100KHz.That is to say I only need to key in 5 values.
    My plot now jumps back to zero as all the values set to zero by default when i do not enter value into each array cell. I hope someone out there has solution to this.
    Thank you.
    Regards,
    Daniel
    Attachments:
    Plot Result.GIF ‏37 KB

    You probably want to use an xy-graph. This way you can graph arbitrarily spaced points.
    (If you want to use a waveform graph, you must generate interpolated values for all intermediary array elements).
    LabVIEW Champion . Do more with less code and in less time .

  • How to let the user define the colors for each plots in the graph (I use LabVIEW 7)?

    How to let the user define the colors for each plots in the graph (I
    use LabVIEW 7)?

    Hi,
    Take a look at this example, it uses property nodes to select tha
    active plot and then changes the color of that plot.
    If you want to make the number of plots dynamic you could use a for
    loop and an array of color boxes.
    I hope this helps.
    Regards,
    Juan Carlos
    N.I.
    Attachments:
    Changing_plot_color.vi ‏38 KB

  • Is there a way to scroll between footnotes in the new pages version and to actually copy an old text with footnotes into the new version without losing them or having them in the text?

    Since my update I am no longer able to scroll between the footnotes. I have to klick on each one to change something. That is unbearable since I have to write a lot of academic texts which usally have a ton of different footnotes. I also can not copy some of my old texts into the new version without losing the footnotes or having them in the middle of my text. Does anyone know a trick or if apple will change that for good? Thx for any support - it really drives me crazy

    Isn't that you asking how to get it (undefined) back?
    If you never had Pages '09, you can buy it from Amazon very cheaply:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=432&sid=f68e84cd2ec6 123bd2ed93806c7e7fb6&mforum=iworktipsntrick
    Peter

  • Labeling Variable Number of Plots on a Graph?

    I'm loading up an unknown number of files and graphing them. Since it can get a bit confusing, I'd like to be able to take a portion of the file name and label each plot on my graph. Since there is a variable number of graphs, I can't seem to work around how to wire the property node. There are several other things I'd like to do with the graph, but dont know if its possible or not such as having a label pop up if your cursor is over a plot.

    You are going to have to embed the reference node for the graph into a for-loop like the attached example. File names or portions thereof are built as strings and then added into the property node Plot>>Plot Name.
    I'm not sure about how to get a label to pop up if you are over the plot. You might be able to do it with some cursors and associated code.
    Attachments:
    Graph-Names.vi ‏20 KB

  • How can you scroll between mail messages in Lion mail?

    In leopard and snow leopard, you could scroll between messages in mail with a 3 finger gesture.  this feature seems to be disabled in lion....or am i missing something?  Is there any way to use gestures to scroll between messages in mail?

    Go to the Settings App
    Pick Mail, Contacts, Calendars
    On the right side you'll see under the Mail section "Add Account”
    Pick that and fill out the requested information

  • Read from spreadshee​t and plot multiple XY graph

    I'm trying to read a text file using the "Read from Spreadsheet" function. Next I want to plot the data in it on a single XY Graph.
    The text file contains 4 coloums and the first coloumn is X axis and rest are for Y axis. I'm not able to get the multiple plots. 
    However, I could get it to plot when only a single graph is to be plotted(only 2 coloumn in file). I've attached my VI and a picture here.
    I need help in plotting multiple XY graph from the text file with the 4 coloumns.
    Solved!
    Go to Solution.
    Attachments:
    Test_1.vi ‏13 KB

    Here's a more scalable solution, useful if you have one x and many y columns.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    MultiXY.png ‏5 KB
    MultiXY.vi ‏10 KB

  • Problem Plotting a Line Graph

    I am trying to plot some line graphs on Numbers and am a new user.
    I can't seem to work out an issue. I want the numbers on the X axis to ascend from 0 onwards from left to right but at the moment they are descending from 10 to 0 left to right.
    How can I change this so the graph is plotted logically?
    Thanks in advance

    There are two basic types of X-Y charts.  All but one are "category" charts where the X axis is evenly spaced and the "numbers" are actually text. The data will be presented in the order listed in your table.  The other is a scatter chart. The icon for this chart looks like a shotgun blast.
    If your X axis numbers are evenly spaced (0,1,2,3...) you can use either type of chart.  Sort your table in ascending order and it will chart as you want it to.
    If your X axis numbers are not evenly spaced (such as 1,2,4,5,10) and you want the chart to be a true X-Y plot of the data, you have to use the scatter chart.  In contrast to the category charts where the X axis values must be in a header column/row, a scatter chart requires the X and Y data to be in data cells. You may have to move your data over a column so the X data is not in a header column.

  • Do you know a VI or a mean to remove plots from a graph?

    I'd like to remove plots from a graph and i know their
    x-cordinate do you know a VI or a mean to remove them?
    Thank you for yours answers.

    A graph is just a display of different points in graphical form. You can actually get the points out of the graph, remove the points of the plot you want to take out from the array, and put it back into the graph.
    Another way I've done it is to use the property nodes, and make the color of the line on the graph transparent. That way, the data is still there, but the plot is invisible.
    Mark

  • How can I eliminate stairsteps between samples in a graph?

    How can I eliminate stairsteps between samples in a graph? I am graphing the input from a fieldpoint AI-100 and I get stairsteps between samples. I'm using Labview 4.1

    Paul,
    It sounds like you are running into the situation where the resolution of the ADC converter is the source of the behavior you see. Your configuration may be set so that a voltage change is not seen between samples, generating multiple points with the same value. If this is the case, the graph you see is correct. It is displaying the points it receives from the FP-AI-100. You can verify this by displaying the graph data in an array, and seeing if some of the adjacent samples show the same value.
    If this is the case, see if you can match the signal range to that of the ADC to take advantage of the resolution available. For example, if you set the range to be 0 to 30 volts, the smallest detectable voltage change would be 7.3 mV (range/gain*2^resolution) bec
    ause the FP-AI-100 has a resolution of 12-bit. You can read up on issues with range and resolution by doing a search on http://www.ni.com using the keywords "range" and "resolution".
    Otherwise you may be able to compensate for this behavior in software, such as running an averaging routine or applying a mathematical formula to the data points.
    Hope this helps!
    Wilbur Shen
    Applications Engineer, Web Support
    National Instruments

  • Two plots on one graph....

    Hi
    I am running a project where I need to follow a plot on a graph. Currently both the plots are being plotted on the graph at the same time (i am using a waveform chart) so it is hard to follow as I have to anticipate where it will be next.What i would like to do is have the plot I want to follow already displayed on the graph and then as I run the VI the new plot is written in real time.
    Is this possible?

    Here's what I had in mind (LabVIEW 8.2)
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    IncrementalPlots.vi ‏14 KB

  • How to plot a log graph using grapher with a given set of data

    hi there,
    im just wondering is it possible to plot a log graph in the grapher software with a given set of data, and also give an error bar and a best-fit line for it?
    so here is the set of data,
    Concentration of BCh (M)
    Mean % Specific Binding (%)
    Standard Deviation
    3 ×10⁻⁹
    71.52
    9.52
    1 ×10⁻⁸
    57.30
    8.56
    3 ×10⁻⁸
    39.15
    9.40
    1 ×10⁻⁷
    24.13
    10.15
    3 ×10⁻⁷
    14.77
    3.31
    1 ×10⁻⁶
    7.22
    2.02
    hope someone could help

    Try these:
    http://y.barois.free.fr/grapher/Bienvenue.html
    http://homepage.mac.com/tlindywizdumb/math/Grapher_index.htm
    http://homepage.mac.com/tlindywizdumb/math/Grapher/Grapher_HowTo.pdf

Maybe you are looking for