QUESTION: SE 2012 data display returns to the time graph each time

Hello

I have SigExp 2012.

If I try to add a data view and make a pledge of graphic style, thermometer, etc., as soon as I have the right up until it clicks, add my TC chain, the data view returns immediately to a graph time.

In addition, even if I use the graph of time, once I added the signal, it only let me see the string in a table, a chart of time or a waveform graph.  Those are the only choices.

If I use a graph of time or a band of waveform graph, it does not read the signal correctly, but I can not configure the data view, the way I want it.

Is this a bug or I do something wrong?

Thank you!

This occurs when you try to change the display of a signal in its raw format "waveform".
You must convert your signals in scalar format. To do this simply add an amplitude and levels step (under: analysis > measures Time-Domain). Drag this DC signal newly converted to a new chart and right click on the graph to change the display.

Honestly, I'm not sure why raw waveform signals are inherently limiting viewing functionality, but in such cases, it is.

You can also; According to the devices on which you use and the order in which you add to your DAQmx Acquire, some default signals step to scalar signals without having to convert.

See the attached screenshot and you'll see how the icons are different between the waveforms and scalar signals.

Hope that helps

Tags: NI Products

Similar Questions

  • hp has extended the date of return to the offer of the College?

    hp has extended the date of return to the offer of the College?

    You need to ask HP directly for more information about this.

    This is the support forum for the consumer and not a business unit of HP.

  • Petition for grant to display all objects in the DB in the data base and discovers the DOF for each.

    Dear administrators,

    I created the user but now I have a requirement for the granting of privileges to view all objects in the DB in the data base and discovers the DOF for each.

    Any help please

    Ritz

    Thanks to advise all the

  • The MTS file date display information on screen time in CC PP

    I need to display the timestamp from date of the MTS files so I can see them in PP CC15. Is it possible to get rid of it within the program? Now, I have to do it in another program and then import the file. Takes too much time this way.

    Premiere Pro does not have this feature.  The closest you can get is display the timecode for clips that have it.  If these clips were recorded using Free Run, that would give you a time, but there is no way to see the date displayed in an overlay.

  • run the Idoc function in the data file returned by the service of GET_FILE

    Hello

    I'm new to this forum, so thank you in advance for any help and forgive me of any error with the post.

    I'm trying to force the execution of a custom Idoc function in a data file Complutense University of MADRID, when this data file is requested from the University Complutense of MADRID through service GET_FILE.

    The custom Idoc function is implemented as a filter of the computeFunction type. One of the datafile has appealed to my custom Idoc function:
    * < name wcm:element = "MainText" > [! - $myIdocFunction ()-] < / wcm:element > *.

    The data file is then downloaded with CRMI via service GET_FILE, but the Idoc function is not called.

    I tried to implement another filter Idoc type sendDataForServerResponse or sendDataForServerResponseBytes, that store objects cached responseString and responseBytes, personalized in order to look for any call to my function in the response object Idoc, eventually run the Idoc function and replace the output of the Idoc in the response. But this kind of filter will never run.

    The Idoc function myIdocFunction is executed correctly when I use WCM_PLACEHOLDER service to get a RegionTemplate (file .hcsp) associated with the data file. In this case, the fact RegionTemplate refers to the element of "MainText" data file with <!-$wcmElement ("MainText")->. But I need to make it work also with service GET_FILE.

    I use version 11.1.1.3.0 UCM.

    Any suggestion?
    Thank you very much
    Francesco

    Hello

    Thank you very much for your help and sorry for this late reply.

    Your trick to activate the complete detailed follow-up was helpful, because I found out I could somehow use the filter prepareForFileResponse for my purpose and I could also have related to the implementation of the native filter pdfwatermark. PdfwFileFilter .

    I managed to set up a filter whose purpose is to force the Idoc assessment of a predefined list of functions Idoc on the output returned by the service GET_FILE. Then I paste the code I have written, in which case it may be useful for other people. In any case, know that this filter can cause performance problems, which must be considered carefully in your own use cases.

    First set the filter in the set of filters in file .hda from your device:

    Filters @ResultSet

    4

    type

    location

    parameter

    loadOrder

    prepareForFileResponse

    mysamplecomponent. ForceIdocEvaluationFilter

    null

    1

    @end

    Here is a simplified version of the implementation of the filter:

    / public class ForceIdocEvaluationFilter implements FilterImplementor {}

    public int doFilter (workspace ws, linking DataBinder, ExecutionContext ctx) survey DataException, ServiceException {}

    Service string = binder.getLocal ("IdcService");

    String dDocName = binder.getLocal ("dDocName");

    Boolean isInternalCall = Boolean.parseBoolean (binder.getLocal ("isInternalCall"));

    If ((ctx instanceof FileService) & service.equals ("GET_FILE") &! isInternalCall) {}

    FileService fileService = ctx (FileService);

    checkToForceIdocEvaluation (dDocName, fileService);

    }

    continue with other filters

    Back to CONTINUE;

    }

    ' Private Sub checkToForceIdocEvaluation (String dDocName, FileService fileService) throws DataException, ServiceException {}

    PrimaryFile file = IOUtils.getContentPrimaryFile (dDocName);

    Ext = FileUtils.getExtension (primaryFile.getPath ());

    If (ext.equalsIgnoreCase ("xml")) {}

    forceIdocEvaluation (primaryFile, fileService);

    }

    }

    forceIdocEvaluation Private Sub (file primaryFile FileService fileService) throws ServiceException {}

    String multiplesContent = IOUtils.readStringFromFile (primaryFile);

    Replacement ForceIdocEvaluationPatternReplacer = new ForceIdocEvaluationPatternReplacer (fileService);

    String replacedContent = replacer.replace (fileContent);

    If (replacer.isMatchFound ()) {}

    setNewOutputOfService (fileService, replacedContent);

    }

    }

    ' Private Sub setNewOutputOfService (FileService fileService, String newOutput) throws ServiceException {}

    File newOutputFile = IOUtils.createTemporaryFile ("xml");

    IOUtils.saveFile (newOutput, newOutputFile);

    fileService.setFile (newOutputFile.getPath ());

    }

    }

    public class IOUtils {}

    public static getContentPrimaryFile (String dDocName) survey DataException, ServiceException {queue

    DataBinder serviceBinder = new DataBinder();

    serviceBinder.m_isExternalRequest = false;

    serviceBinder.putLocal ("IdcService", "GET_FILE");

    serviceBinder.putLocal ("dDocName", dDocName);

    serviceBinder.putLocal ("RevisionSelectionMethod", "Latest");

    serviceBinder.putLocal ("isInternalCall", "true");

    ServiceUtils.executeService (serviceBinder);

    String vaultFileName = DirectoryLocator.computeVaultFileName (serviceBinder);

    String vaultFilePath = DirectoryLocator.computeVaultPath (vaultFileName, serviceBinder);

    return new File (vaultFilePath);

    }

    public static String readStringFromFile (File sourceFile) throws ServiceException {}

    try {}

    return FileUtils.loadFile (sourceFile.getPath (), null, new String [] {"UTF - 8"});

    } catch (IOException e) {}

    throw new ServiceException (e);

    }

    }

    Public Shared Sub saveFile (String source, destination of the file) throws ServiceException {}

    FileUtils.writeFile (source, destination, "UTF - 8", 0, "is not save file" + destination);

    }

    public static getTemporaryFilesDir() leader throws ServiceException {}

    String idcDir = SharedObjects.getEnvironmentValue ("IntradocDir");

    String tmpDir = idcDir + "custom/MySampleComponent";

    FileUtils.checkOrCreateDirectory (tmpDir, 1);

    return new File (tmpDir);

    }

    public static createTemporaryFile (String fileExtension) leader throws ServiceException {}

    try {}

    The file TmpFile = File.createTempFile ("tmp", "." + fileExtension, IOUtils.getTemporaryFilesDir ());

    tmpFile.deleteOnExit ();

    return tmpFile;

    } catch (IOException e) {}

    throw new ServiceException (e);

    }

    }

    }

    Public MustInherit class PatternReplacer {}

    Private boolean matchFound = false;

    public string replace (CharSequence sourceString) throws ServiceException {}

    Matcher m = expand () .matcher (sourceString);

    StringBuffer sb = new StringBuffer (sourceString.length ());

    matchFound = false;

    While (m.find ()) {}

    matchFound = true;

    String matchedText = m.group (0);

    String replacement = doReplace (matchedText);

    m.appendReplacement (sb, Matcher.quoteReplacement (replacement));

    }

    m.appendTail (sb);

    Return sb.toString ();

    }

    protected abstract String doReplace(String textToReplace) throws ServiceException;

    public abstract Pattern getPattern() throws ServiceException;

    public boolean isMatchFound() {}

    Return matchFound;

    }

    }

    SerializableAttribute public class ForceIdocEvaluationPatternReplacer extends PatternReplacer {}

    private ExecutionContext ctx;

    idocPattern private model;

    public ForceIdocEvaluationPatternReplacer (ExecutionContext ctx) {}

    This.ctx = ctx;

    }

    @Override

    public getPattern() model throws ServiceException {}

    If (idocPattern == null) {}

    List of the functions = SharedObjects.getEnvValueAsList ("forceidocevaluation.functionlist");

    idocPattern = IdocUtils.createIdocPattern (functions);

    }

    Return idocPattern;

    }

    @Override

    protected String doReplace(String idocFunction) throws ServiceException {}

    Return IdocUtils.executeIdocFunction (ctx, idocFunction);

    }

    }

    public class IdocUtils {}

    public static String executeIdocFunction (ExecutionContext ctx, String idocFunction) throws ServiceException {}

    idocFunction = convertIdocStyle (idocFunction, IdocStyle.ANGULAR_BRACKETS);

    PageMerger activeMerger = (PageMerger) ctx.getCachedObject("PageMerger");

    try {}

    String output = activeMerger.evaluateScript (idocFunction);

    return output;

    } catch (Exception e) {}

    throw the new ServiceException ("cannot run the Idoc function" + idocFunction, e);

    }

    }

    public enum IdocStyle {}

    ANGULAR_BRACKETS,

    SQUARE_BRACKETS

    }

    public static String convertIdocStyle (String idocFunction, IdocStyle destinationStyle) {}

    String result = null;

    Switch (destinationStyle) {}

    case ANGULAR_BRACKETS:

    result = idocFunction.replace ("[!-$","<$").replace("--]", "$="">" "]");

    break;

    case SQUARE_BRACKETS:

    result = idocFunction.replace ("<$", "[!--$").replace("$="">", "-] '");

    break;

    }

    return the result;

    }

    public static model createIdocPattern ( list idocFunctions) throws ServiceException {}

    If (idocFunctions.isEmpty ()) throw new ServiceException ("list of Idoc functions to create a template for is empty");

    StringBuffer patternBuffer = new StringBuffer();

    model prefix

    patternBuffer.append ("(\\ [\\!--|)")<>

    Features GOLD - ed list

    for (int i = 0; i)

    patternBuffer.append (idocFunctions.get (i));

    If (i

    }

    model suffix

    patternBuffer.append ("") (. +?) (--\\]|\\$>)");

    String pattern = patternBuffer.toString ();

    log.trace ("Functions return Idoc model", model);

    Return Pattern.compile (pattern);

    }

    }

    public class ServiceUtils {}

    Private Shared Workspace getSystemWorkspace()}

    Workspace workspace = null;

    WsProvider provider = Providers.getProvider ("SystemDatabase");

    If (null! = wsProvider) {}

    workspace = wsProvider.getProvider ((workspace));

    }

    Returns the workspace;

    }

    getFullUserData private static UserData (String userName, cxt ExecutionContext, workspace ws) throws DataException, ServiceException {}

    If (null == ws) {}

    WS = getSystemWorkspace();

    }

    UserData userData is UserStorage.retrieveUserDatabaseProfileDataFull (name of user, ws, null, cxt, true, true);.

    ws.releaseConnection ();

    return userData;

    }

    public static executeService (DataBinder binder) Sub survey DataException, ServiceException {}

    get a connection to the database

    Workspace workspace = getSystemWorkspace();

    Look for a value of IdcService

    String cmd = binder.getLocal ("IdcService");

    If (null == cmd) {}

    throw new DataException("!csIdcServiceMissing");

    }

    get the service definition

    ServiceData serviceData = ServiceManager.getFullService (cmd);

    If (null == serviceData) {}

    throw new DataException (LocaleUtils.encodeMessage ("!")) csNoServiceDefined", null, cmd));

    }

    create the object for this service

    The service = ServiceManager.createService (serviceData.m_classID, workspace, null, Binder, serviceData);

    String userName = 'sysadmin ';

    UserData fullUserData = getFullUserData (username, service, workspace);

    service.setUserData (fullUserData);

    Binder.m_environment.put ("REMOTE_USER", username);

    try {}

    init service do not return HTML

    service.setSendFlags (true, true);

    create the ServiceHandlers and producers

    service.initDelegatedObjects ();

    do a safety check

    service.globalSecurityCheck ();

    prepare for service

    service.preActions ();

    run the service

    service.doActions ();

    } catch (ServiceException e) {}

    } {Finally

    service.cleanUp (true);

    If (null! = workspace) {}

    workspace.releaseConnection ();

    }

    }

    }

    }

  • Can a weird question we use Data Guard to apply the bidirectional log?

    Hi I have a question about Data Guard, can we use Data Guard to apply the bidirectional log? I mean keeping the two of them primary and standby to Active status (read write Mode).

    Maybe my question seems silly, but I just wanted to check on it.

    Thank you

    Laughing out loud

    That Golden Gate or water courses that will work in two ways. One or the other. Puts additional requirements on the hardware is the downside.

    Data Guard does not do that.

  • How to return all the TIME in a column date time?

    Hello.

    My column 'DATETIMESTAMP' usually returns November 15, 2011 10:32:15 '.

    If I TRUNC (DATETIMESTAMP) I can get just the date - what is optimal.

    But what I want here is just the TIME element.

    SUBSTR does not seem to return anything after the date element.

    I've searched high and low.

    Any thoughts people?

    See you soon.

    Ady.

    To_char(DateTimeStamp,'HH24:mi:SS')

  • Display the date current system and the time in a form

    Hello experts around the world.

    I have this little minor challenge I'm having trouble in the corners.

    I have a form and I want to display the date current system and time so when I save the form his record with the date displayed.

    I tried sysdate, & sysdate and & sysdate. in the default part with static text with memories of State meetings.

    So any help or suggestion would be a great help :)

    Thank you

    Hi kevin

    write the script in the HTML header below.

    It will give at once, you can set this variable in the variable text box element.

    or else check the below link in java script

    http://www.McFedries.com/JavaScript/DateTime.asp

    see you soon,
    Shan

  • data displayed only in the main table not shown in the child table

    I have two tables: master and child. In the main table, I want the first line of the main table must be selected and child records to be displayed when the page is displayed. But the page shows only the master records.

    The code written in the process in the controller application is:
    TheAM OAApplicationModule = pageContext.getApplicationModule (webBean);

    Table OATableBean = (OATableBean) webBean.findChildRecursive ("region1RN");
    Boolean ExecuteQuery = BooleanUtils.getBoolean (false);
    [Serializable] parameters = {executeQuery};
    Class [] paramTypes = {Boolean.class};

    theAM.invokeMethod ("init", parameters, paramTypes);

    the code written in AM is:
    public void init (Boolean executeQuery)

    {


    TXN OADBTransaction = getOADBTransaction();
    MTHSustainAspectsVOImpl vo = this.getMTHSustainAspectsVO1 ();

    Line masterRow = vo.first ();
    masterRow.setAttribute ("SelectFlag", "Y");
    vo.executeQuery ();


    }

    can someone tell me why the child records don't come

    Change the code as follows and try

    public void init (Boolean executeQuery)

    {

    TXN OADBTransaction = getOADBTransaction();
    MTHSustainAspectsVOImpl vo = this.getMTHSustainAspectsVO1 ();

    Line masterRow = vo.first ();
    masterRow.setAttribute ("SelectFlag", "Y");
    vo.executeQuery (); Not necessary
    vo.setCurrentRow (masterRow);

    }

    Prasanna-

  • Hi there, when I'm forwarding a message in Thunderbird, I have a whole bunch of data from unwanted messages @ the top of each forwarded message. How can I get rid of him?

    I want to be able to send messages WITHOUT all that information sitting at the top of each message.

    Original message-

    From:-Wed Jul 02 16:02:43 2014
    X key account: account 1
    X-UIDL: GmailId146f53cb7b1eb504
    X-Mozilla-Status: 0011
    X-Mozilla-Status2: 00000000
    X-Mozilla-keys:
    Delivered-To: [email protected]
    Received: by 10.58.234.98 with SMTP id ud2csp249792vec; Tuesday, July 1, 2014 21:02:16-0700 (PDT)
    X - Received: from 10.66.226.172 with SMTP id rt12mr1046210pac.101.1404273735957; Tuesday, July 1, 2014 21:02:15-0700 (PDT)
    Return-Path: < [email protected] >
    Received: from mailak.datacom.co.nz (mx03.datacom.co.nz. [202.175.132.5]) by mx.google.com with ESMTPS id wk8si28988621pab.59.2014.07.01.21.02.14 for < [email protected] > (version = TLSv1 cipher = ECDHE-RSA-RC4-SHA bits = 128/128); Tuesday, July 1, 2014 21:02:15-0700 (PDT)
    Received-SPF: no (google.com: [email protected] does not designate permitted sender hosts) client-ip = 202.175.132.5;
    Authentication-results: mx.google.com; SPF = neutral (google.com: [email protected] does not designate permitted sender hosts) [email protected]
    Received: From DNZSERVEX1.dnzservices.co.nz (no Verified [202.175.131.70]) of mailak.datacom.co.nz with ESMTP Gateway < B53b384440002 > id; Wednesday 2 July 2014 16:02:12 + 1200
    Received: From DNZSERVEX1.dnzservices.co.nz ([202.175.131.70]) by DNZSERVEX1.dnzservices.co.nz ([202.175.131.70]) with mapi; Wednesday 2 July 2014 15:59:40 + 1200
    From: Canon orders < [email protected] >
    To: "Photo Browns Bay & Digital" < [email protected] >
    Date: Wednesday 2 July 2014 15:59:41 + 1200
    Subject: RE: query | AS SOON AS POSSIBLE
    Thread-Topic: Interview | AS SOON AS POSSIBLE
    Thread-Index: VqgyW2Vahp62RS86K3r0Ls7Szew + Ac is
    Message-ID: < 8424F635E837A047A9FEF132ADAF1E070302564B8020@DNZSERVEX1.dnzservices.co.nz >
    Accept-Language: en-US, en - NZ
    Content-Language: en-US
    X-MS-a-tie:
    X-MS-TNEF-Correlator:
    AcceptLanguage: en-US, en - NZ
    Content-Type: multipart/alternative; Boundary = "_000_8424F635E837A047A9FEF132ADAF1E070302564B8020DNZSERVEX1d_."
    MIME-Version: 1.0

    See you soon!

    The menu bar, select View-Headers-Normal

    No menu bar? Press the ALT key.

  • my the time display on my emails and my display system and the time is not... an off hour... how reset?

    new computer... email recd time and time is an hour earlier that the time is displayed on my system (lower right corner) and at the same time on the icon weather is an hour later.  I suggested by my internet proider contact you.   Thank you

    Click on the date and time in the corner of the screen to the right, then click on change settings of date and time.  You will probably need to set the appropriate time zone.

    Good luck.

  • Save data track selected to the XY graph

    Hello

    I have an XY Chart with 40 locations. The visibility of each parcel is editable by the user using the box of visibility of conspiracy.

    The user must have an option to save data any point of execution and channels that are selectecd to view should be saved as an excel file.

    When I use the option to export to excel, all 40 channels names are stored in the file. Instead, I want only the selected channelswhich are selected to be saved in the file.

    Let me know a way to do it.

    Hello

    Thanks for the reply.

    I already have a logic as in the attachment that will find the visible plots and using the parcel number I'm indexing of data. And it works very well.

    I wanted to know is there any node property or call the node which will give you all the visible plots in a XY Chart.

  • Composite PK with DATE, how to eliminate the time part of PK?

    Hello
    I'm looking in the design of a table that have composite PK: REL_DATE (date) + ID_SKU (number).

    REL_DATE the value column is real time in it, and I would have that PK is defined only for the part of MY-JJ-AA without time, is it possible? Or should I set up columns for mon-JJ-AA and hh24:mi:ss separately?

    I don't know how Oracle trade this situation, can I prune Date in the definition of PK or there another way to do this, my taks overall to have unique PK on REL_DATE(dd-mon-yy) + ID_SKU, without part time so I should have valid data as shown in the insert:
    I'm on Ora10g.
    ...
    CONSTRAINT PK_RYBA_01 PRIMARY KEY (REL_DATE, ID_SKU)); 
    
    REL_DATE                ID_SKU     MATRL_IDX...
    12-Aug 10 09:14:00      75         TAB12
    12-Aug 10 11:14:12      75         INDIGO
    12-Aug 10 14:14:57      75         OSB  
    TX
    Trento

    Yes, you can create what is called a function-based index.

    CREATE INDEX index_name ON table_name
    (TRUNC (REL_DATE), ID_SKU);

    Kind regards
    Naren

  • No one has answered my question. Why forefox 50 did awy the audit if the plugins are up-to-date, they returned to the old page why?

    Pleez answer my question in detail... Why do you have firefox back to the old plugin page? more no line saying check to see if the plugins are up to date.should, I'll be back for chrome im confused cuz im just updated yesterday at 50.

    Hi, firefox will finish with support of plugins very soon - so there is no greater need to again announce the site always check on them... https://blog.Mozilla.org/futurereleases/2015/10/08/NPAPI-plugins-in-Firefox/

  • How can I set the time and date of return on the office toolbar?

    After a lightning storm and some internal power outtages I noticed my clock disappeared from the office toolbar.  How can I get that back?  It is not no matter what another user of the user profile because I am the only user of this desktop computer...

    Type Notification area in the search box to start.

    Select Notification area icons in the list

    Select icons system Turn On or Off, at the bottom left

    In the drop-down next to the clock menu, select enabled.

Maybe you are looking for