How do I get the chart to start from ZERO?

Hello everyone,
Could anybody tell me if it's possible to use a chart that shows the acquisition since Time Zero ( instead of moving forward ) ?
Thanks a lot,
Marc

That would be a graph, but you would have to build your own 'history' and feeding each run all the data. With LabVIEW 8 and a x-control it would be possible. but you would fill all the available memory of the PC!
Ton
Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
Nederlandse LabVIEW user groep www.lvug.nl
My LabVIEW Ideas
LabVIEW, programming like it should be!

Similar Messages

  • I'm trying to set up a DAQ assist just to measure some voltage, how do i get the graph to start from 0 (time) every time I press run

    Hi all,
    I am trying to set up a simple DAQ assist to measure some voltages (currently a 9 volt battery to aid set up), when choosing to use a waveform chart to log the voltages the graph doesnt start from 0 (time seconds) how do I do this and get it to reset every time I press run or even stop.
    What I want to see at the end is a chart for the full lenght of the test showing voltage against time in seconds.
    Any ideas peeps
    many thanks
    Shane

    Hi Shane,
    Look at this VI
    Here, I clear the chart before running the VI, using a 'history data' property node ( i pass an empty array to clear it)
    In effect, each time you run the VI, the chart will begin at 0:00
    Hope this helps
    Regards
    Dev
    Attachments:
    chart_start.vi ‏20 KB

  • If you deleted a  device off of find my iphone.how do you get the device to start back up agian and put it back on find my iphone?

    if you deleted a  device off of find my iphone.how do you get the device to start back up agian and put it back on find my iphone? becuase i have delted my dads iphone acedentily of find my iphone and it is nownot working. his phone is just staying at a black screen with a loading circle on it. i need to know how to fix this..like do i go the to apple store or the carrier store or can i fix it at home?

    Try these two ways to fix the iPhone (in order).  If neither works, you would have to take it to the store.
    1.  Reset the iPhone.  Hold the on/off and home buttons togehter for about 10 seconds.  If it works, you'll get the Apple logo and then something good should happen.
    2.  Try recovery mode as described here:
    http://support.apple.com/kb/HT1808
    If one of these work, you can then re-introduce the iPhone to Find My iPhone by doing Settings > iCloud > Find My iPhone = "On" on the device.

  • I get a blue screen; tried the single boot and get "audit space low"; how to I get the computer to start again?

    I get a blue screen; tried the single boot and get "audit space low"; how to I get the computer to start again?

    In the text you say you are using Snow Leopard. Snow Leopard will not operate on a G4 (or any Mac with a PowerPC processor). Leopard OS 10.5 is the max OS for PowerPC processor Macs. Your profile shows OS 10.5.6. What OS are you using (or trying to use)?
    Will the PB boot using a systen install DVD?
     Cheers, Tom

  • How do you get the calendar to start on Monday?

    How do you get the calendar to start on Monday rather than the default Sunday ?

    Read through this discussion:
    https://discussions.apple.com/message/19866624#19866624

  • My iMac has two admin accounts (because I used Migration Assistant). How do I get the iMac to start up in the 2nd account?

    My iMac has two admin accounts (because I used Migration Assistant). How do I get the iMac to start up in the 2nd account?

    Welcome to Apple Support Communities
    Open System Preferences > Users & Groups > Login Options, press the padlock at the bottom left corner of the System Preferences window and choose the second user account next to "Automatic login". Your computer will always log in to this user account whenever you start up Mac OS X.
    If you haven't got anything in the first user account, you can remove it from System Preferences > Users & Groups after logging into the second user account

  • How do I get the Interval to keep from repeating after it's used once?

    How do I get the Interval to keep from repeating after it's used once? Because I tried clearInterval but I couldn't get it working.
    When my code looks like this, with ClearInterval, it refuses to execute my action, which is to change scenes after a short interval:
    (Pardon if there is some formating errors, I had to reformat it for the Internet)
    Code with clearInterval command
    stop(); 
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void{
       gotoAndPlay(29);   
       var myInterval:uint = setInterval(fl_ClickToGoToNextScene_14,3000);   
       clearInterval(myInterval);
    function fl_ClickToGoToScene_14(event:MouseEvent):void{
        MovieClip(this.root).gotoAndPlay(1, "Testside");
    However, when my code looks like this it refuses to stop looping:
    Code without ClearInterval command
    stop();
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
       function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void{
       gotoAndPlay(29);
       setInterval(fl_ClickToGoToNextScene_14,3000);
    function fl_ClickToGoToScene_14(event:MouseEvent):void{
        MovieClip(this.root).gotoAndPlay(1, "Testside");
    Any ideas? Also, feel free to dumb your answer down, because I am completely new to Flash, Actionscript and coding.

    If you insist on using setInterval - you need to declare interval id in a higher scope so that you can clear it later:
    stop();
    var myInterval:uint;
    Kollektiv.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame_2);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
              gotoAndPlay(29);
              myInterval = setInterval(fl_ClickToGoToNextScene_14, 3000);
    function fl_ClickToGoToScene_14():void
              clearInterval(myInterval);
              MovieClip(this.root).gotoAndPlay(1, "Testside");
    I suggest you use Timer instead:
    stop();
    import flash.events.TimerEvent;
    import flash.utils.Timer;
    var timer:Timer = new Timer(3000, 1);
    timer.addEventListener(TimerEvent.TIMER, fl_ClickToGoToScene_14);
    function fl_ClickToGoToAndPlayFromFrame_2(event:MouseEvent):void
              timer.start();
              gotoAndPlay(29);
    function fl_ClickToGoToScene_14(event:TimerEvent):void
              timer.stop();
              MovieClip(this.root).gotoAndPlay(1, "Testside");

  • I have about 800 more songs on my nano than itunes, due to a crash. How can I get the songs onto itunes from the ipod, or at least get the new music ive gotten since the crash onto my ipod without deleting all the other songs when it syncs?

    i have about 800 more songs on my nano than itunes, due to a crash. How can I get the songs onto itunes from the ipod, or at least get the new music ive gotten since the crash onto my ipod without deleting all the other songs when it syncs?

    It has always been very basic to always maintain a backup copy of your computer for just such an occasion.  Use your backup copy to put everything back.
    If you have failed to bakup, then you can transfer itunes purchases from an ipod: File>Transfer Purchases

  • I'm new to Mac. I have an iPhone and a Mac Mini.  My original iTunes was on a Windows computer that crashed.  So, all of my iTunes Music and Movies are gone.  How do I get the movies and music from my iPhone to the new Mac Mini?

    I'm new to Mac. I have an iPhone and a Mac Mini.  My original iTunes was on a Windows computer that crashed.  So, all of my iTunes Music and Movies are gone.  How do I get the movies and music from my iPhone to the new Mac Mini?

    If you still have the crashed Win computer, you may be able to recover your music and movies from the hard drive. If you have a friend with a hard drive USB connection kit and a PC, they should be able to help.  Otherwise, check locally for computer services that might do that for you (I think Best Buy Geek Squad may be able to help). If the drive itself is in good shape, it shouldn't be too expensive. 

  • My hard drive crashed.  How do I get the music I purchased from itunes back?

    My hard  drive crashed.  How do I get the music I purchased from Itunes back?

    Thanks Roaminggnome,
    I just spoke with a friend who like you is into Apple and he just walked me through the Cloud.  At least I was able to get those songs back. 
    Thanks.
    Do you know --- the last time I tried to back up my itunes it asked for 106 cd's do you how to direct the backup to the external drive?   By the way I found 3 back up cds from 2010 and 1 of the 3 cd's had an error.
    Sincerely,
    Nanettefrombrooklyn

  • How can I get the built in apps from iPad 2 to my iPad 1?

    How can I get the built in apps from ipad2 to my iPad 1?

    Is your iPad 2 running iOS 5.0.1 and your ipad 1 running iOS 4? If this is the case then go through the update process on your iPad 1. All the iPad 2 apps running on iOS 5 that are compatible with the iPad 1 will be put on your iPad 1. Those apps that require a camera will not appear because the iPad 1 does not have a camera.

  • How do I change the table to start from right to left

    How do I change the table to start from right to left

    iWork apps have bugs that make them unsuitable for RTL scripts in various ways.  You might be better off using a different app if your work has a lot of RTL text.

  • How can we get the selected line number from JTextArea ?

    how can we get the selected line number from JTextArea ? and want to insert line/string given line number into JTextArea??? is it possible ?

    Praitheesh wrote:
    how can we get the selected line number from JTextArea ?
    textArea.getLineOfOffset(textArea.getCaretPosition());
    and want to insert line/string given line number into JTextArea??? is it possible ?
    int lineToInsertAt = 5; // Whatever you want.
    int offs = textArea.getLineStartOffset(lineToInsertAt);
    textArea.insert("Text to insert", offs);

  • Hello how do I get the question mark away from my tracks. The songs can be played against the

    Hello how do I get the question mark away from my tracks. The songs can be played against the

    You have to find the songs on your computer. If you have deleted them then you will not be able to add them. Check the backup of your computer.

  • How do you get the web application path from the servlet?

    I have created a web application which is installed in
    /webapps/myApplication
    /webapps/myApplication/data/users.xml
    /webapps/myApplication/WEB-INF/classes/myServlet
    How can you get the path to the "users.xml" file from the "myServlet" file?
    The code below doen's seem to return the xml file. anybody knows why?
    public class myServlet extends HttpServlet {
    public void doGet( HttpServletRequest req, HttpServletResponse res ) throws ServletException, IOException
    File myXmlFile = new File("/data/users.xml");

    Try this..
    String FileName = getServletContext().getRealPath("\\data\\users.xml");
    File myXmlFile = new File(FileName);
    hope this helps..

Maybe you are looking for

  • How do put my icon on my front page

    Can someone help me Solved! Go to Solution.

  • Spreadsheet Services won't save settings

    <p>I'm selecting some settings in the Spreadsheet Services throughTools->Preferences such as styles and color for parent members.But when I logout and login it doesn't save those settings. Is thisa known issue with the tool because I'm sure this does

  • How can I get Aperture 3.6? For Real!

    My IMac hard drive with Maverick crashed 3rd time in 5 years 2 days ago, Apple replaced it, along with Yosemite. Like everyone else I have no iPhoto or Aperture. This is absolutely unacceptable. I am an Artist/Photographer, I have to use both. My web

  • GetCellData error in WebI to SAP BEx Query

    Hi all, We have  multicube with a BeX query and and universe. We have created roles with authorizations and restrict users on Retun Line and Business Unit. We have created the authorization variables in the BeX query on Return Line and on Business Un

  • Rfc fails to execute

    Hi, I dont seem to be able to resolve this...during the Configuration for XI, we need to create the RFC destinations for AI_RUNTIME_JCOSERVER, which i did and created the corresponding one in the j2ee stack also, however a testRFC fails..with the err