How to export xy graph with indicator field.

hi,
 I want export my graph in .emf format.For this i have used invoke node>>Image export. If i use this , i can only export the graph not other indicator filed(numeric and string indicatror).how can i export graph with indicator field??
here is .vi that i have used.
Solved!
Go to Solution.
Attachments:
Unbenannt 2.vi ‏12 KB

Thanks for your post in our Discussion Forum,
is it necessary to export the picture in the .emf Format?
Otherwise I can provide two possibilities:
The easiest way to make a screenshot of a certain area of the frontpanel is to 
create a SubVI with all the elements you want to take a screenshot from and
then take a screenshot from the whole frontpanel of the SubVI.
This works fine although the frontpanel is not visible while the picture is taken.
The screenshot can be taken with a method-node as seen in the example attached to this post.
Another possibility is to crop a screenshot of a whole frontpanel to the region which you are interested in.
How this works is described here: http://forums.ni.com/t5/LabVIEW/take-screenshot-of-part-of-front-panel/td-p/1613750
The downside is that you have to manually set the region which might change due to scrolling or changes on the panel.
Best regards,
Peter
Attachments:
VI Screenshot.vi ‏13 KB

Similar Messages

  • How to create pdf files with text field data

    how to create pdf files with text field data

    That looks like it should work, but it doesn't.
    I opened the PDF I had created from Word in Acrobat (X Pro). Went to File > Properties. Selected "Change Settings". I then enabled "Restrict editing...", set a password, set "Printing Allowed" to "none", "Changes Allowed" to "none", and ensured that "Enable copying of text..." was disabled.
    I saved the PDF file, closed Acrobat, opened the PDF in Reader, and I was still able to select text and graphical objects.
    I reopened the PDF in Acrobat, and the document summart still shows everything as allowed. When I click on "show details" (from File > Properties) it shows the correct settings.
    Any ideas?

  • How to concatenate single quote with any field like 'VBAK'

    Hi,
    How to concatenate single quote with any fields.
    say for example I have table name as MARA, I have to pass that table name to other fields with single quote , like I have to pass that as
    tab name = 'MARA'.
    but how to do this,
    below statement will not work
    concatenate '''  'MARA'   ''' into string.. it's giving syntax error...
    Regards,
    Mrunal

    gv_name = 'MARA'.
    gc_quote = '''.
    CONCATENATE gc_quote gv_name gc_quote INTO value.
    Pushpraj

  • How to export XY graph picture to clipboard (or file) with labview 6i

    Hello,
    I would like to export XY graph picture to clipboard (or file) to insert it in a word document using labview 6i
    I found example for labview 8 using invokenode but not with labview 6i
    But this invokenode doesn't exist in labview 6i : here's what I found in labview 6i
     Does anyone knows how to use this one ?
    thanks in advance
    Solved!
    Go to Solution.

    I would recommend you use Write PNG File.vi instead of Write JPG File.vi unless the place you are using it cannot handle PNGs.  The PNG will be much better quality and should be about the same size for this type of image.
    Message Edited by DFGray on 02-03-2010 07:22 AM
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • How to export Resource Graphs/Profiles to Word or Excel

    We are using Primavera Risk Analysis 8.x and we could not find an option on how to generate reports showing resource profiles or how to export them into another software. Has anybody came across such an issue?
    Thanks in advance
    Chris

    As with other Primavera products you can export most data fields out to MS Excel or Word or Access in order to better customize your reports. Charting in Excel is far better for your graphical reports :) If not, you could always import that data back into P6 and run your resource profiles in that software.
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Exporting using Export View Contents commandThis method of export is excellent for getting selected information out of Pertmaster for manipulation or viewing in other packages.
    You can use the Export View Contents command from the Gantt Chart or the Resource Sheet.
    Using Export View Contents from the Gantt Chart saves the information displayed in the current columns and the column headings.
    Using Export View Contents from the Resource Sheet saves the information on the usage of the displayed resources between two user defined dates.
    To Export View Contents from the Gantt Chart
    Set up the Gantt Chart columns to display the information that you require. Apply a filter if you wish to export only the information of certain tasks.
    View | Export View Contents.
    Type in the filename. Click on OK.
    To Export View Contents from the Resource Sheet
    Add the required resources to the resource sheet.
    View | Export View Contents.
    Type in the filename. Click on OK.
    Enter the export date range. Click on OK.
    To Export View Contents from the Resource Graph
    You cannot export directly from the resource graph. So add the required resource to the resource sheet and then use export as described above.
    Was this answer helpful??   If not,  just email me back
    Thanks,

  • How to create ONE graph with a growth trend ($ and %)?

    I would like to create a graph with a growth trend.
    The graph should have figures on one side reflecting $ values and on the other % growth.
    I cannot make a trend on the same graph and usually spend ages adding another graph to show the trend. I end up making 2 graphs instead of one.
    Please refer to the following really basic graph that will give you an idea.
    ex : http://www.tellurideareahomes.com/images/graph1.jpg
    Can anyone show how to do that?

    What you want requires a bit of trickery.
    Chart the bar graph
    Chart the trend
    then move the trend one above the bar one after setting its background to none.
    If this workaround is not OK for you,
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'09 (possibly for iWork '99)
    Yvan KOENIG (from FRANCE mercredi 19 novembre 2008 11:18:45)

  • How to convert internal table with dynamic fields to XML

    Dear all,
    I met a problem like the following:
    The aim is to transform the following parameter to XML
    IT_FIELD stores the dynamic filed name of the internal table,with these fields, the dynamic internal can be created by cl_abap_tabledescr=>create(it_field)
    IT_VALUE stores the value of the internal table dynamically created with dynamic fields.
    For example
    IT_FIELD =>
    line1: FIELD1
    line2: FIELD2
    line3: FIELD3,
    three lines in this internal table.
    dynamically created internal table structure FIELD1 FIELD2 FIELD3
    And IT_VALUE=>
    1          2          3   (First line)
    11        22        33
    two lines of data.
    Do you have any idea about how to transform the IT_VALUE to XML here? And also the transformed XML to the IT_VALUE.( we may need remember IT_FIELD here for later XML to IT_VALUE.)
    Hope I describe the problem clearly.
    Any inputs will be appreciated.
    Edited by: Max Tang on Jan 12, 2009 3:46 PM
    Edited by: Max Tang on Jan 12, 2009 4:14 PM

    Hi,
    you need to implement a bit of coding for that.
    With the 'do varying' statement abap provides a loop over those fields. Within this loop you can build up a new internal table with one entry for each period and amount.
    kind regards
    Siggi
    PS: I am not very familiar with CO, but I guess there will be a standard extractor for that.

  • How can i control graph with two inputs?

    Hi,
        i would like to ask you about the graph with two inputs
    Normally, if i just give one input, they generate the graph with this input(y) vs time(x).
    But now i would like to get the graph with my two inputs in x axis and y axis .
    i want to control both of two axis. How could i do for it ?
    i attached the file that i try to use "Build XY graph" to control both x and y axis with random number .
    It can run but i don't know how come the graph show nothing. .
    Actually , it have to show something like wavefrom continuously. am i right?
    Could you tell me a way to solve it ? 
    >>>
    what i want to get is ..
    in Graph,
    for x axis , ditance (always increases)
    for y axis , vibration (vary)
    >>>
    Thank you so much for your time . I am looking forward your kindly reply.
    With Respect,
                            Su
    Attachments:
    using Build XY graph.vi ‏59 KB

    Hi NI9233,
    Mind me to interrupt, I am just helping Mike to explain what he meant to you, refer to the graph:
    Picture 1:
    Double click on Build XY Graph, uncheck the clear data on each call
    Picture 2 and 3:
    Change your formula node into +1 Basic Function in Functions Pallette.
    Hope that helps!
    PS: I am sorry for the size of the image, seems I made a mistakes when I saved the picture.
    Sincerely,
    Krisna Wisnu
    Message Edited by Krisna Wisnu on 11-19-2008 08:19 PM
    Sincerely,
    Krisna Wisnu
    Attachments:
    Clear Graph on Each Call.PNG ‏46 KB
    +1.PNG ‏30 KB
    +1_2.PNG ‏21 KB

  • How to Update ESTMJ table with appended fields

    Attempting to do a mass load of data to table ESTMJ. Tried using an LSMW, but took a very long time...days in fact. Added a couple Z fields to this table in an append structure. Attempting to run BAPI_BUS1077_CREATE to add records, but how do I update the new Z fields using this BAPI?

    Hi,
    the af:column allows you to group columns
    <af:column>
    <af:column> </af:column>
    <af:column> </af:column>
    </af:clomn>
    Also, in HTML it is easy to assign a background color to cell, e.g. cell with Label 1 is red, Label 2 is green.
    Is there something like this in JSF?
    You can use CSS on the inlineStyl or contentStyle property to dynamically set CSS using EL. You can reference e.g. a managed bean , access the #{row} variable within the managed bean method and return the color based on the value you read for the each row
    Frank

  • How to export a QT with eight audio tracks

    Hi  All. I want to export a sequence with 8 separate audio tracks (interviews on 1&2, music on 7&8, sound effects and ambient sound on the others) so that the resulting QT has 8 separate and distinct tracks, matching the tracks in FC.
    The goal is for a future editor at the TV station I work at to be able to take the video and ambient audio, but use different music.
    In sequence settings, I've got 'audio output' set to 8, with each grouping checked 'dual Mono'. But when I export, I get a QT with a mixed down stereo pair on channels 1 and 2 (with audio from all the FC tracks), and six empty tracks.

    I have a video tutorial...goes into a bit more detail, including how to make those 8 options happen:
    Export Multiple Channels of Audio in FCP
    http://library.creativecow.net/ross_shane/multi-audio/1

  • How to export project(s) with GPS data

    I tried to export a project with GPS metadata but when I import that project (as a library) into my Aperture on my iMac, no GPS data...
    Am I missing something obvious??
    Adam

    Hello Adam,
    First of all - shift-L does NOT bring up the lift and stamp HUD on my Aperture 3...in fact, on the menu, it has no keyboard shortcut.
    That is surprising for me, perhaps in my list of questions I should also have asked for your OS and exact Aperture Version. I tried this with OS Lion 10.7.2 and Aperture 3.2.1.
    But you found how to bring forward the Lift&Stamp HUD, so that is not so important right now.
    It is really good to know that you see GPS data on your images. Those you should be able to export.
    I apply your smart album and it's rules, that image shows up...so if I see latitude/longitude data in the metadata tab, why does your smart album pull it out??
    Probably your GPS tags contain Latitude/Longitude allright, but not the GPS version.
    Remove the rule '"GPS Version" is empty' from the smart album, then you will see only those images that don't even have Latitude or Longitude. Hopefully that are not too many.
    I guess from my perspective, if I either assign a "place" for my pictures or import GPS info from my Garmin, shouldn't that put the right metadata in so that it could be exported properly?? If not, when I move these images to my iMac I will have to redo ALL my places...which doesn't make sense...
    Sorry if I'm not getting it...
    sorry, if I am not explaining properly...
    I have done some experiments right now with my current Aperture version 3.2.1 and surprise, surprise! Seems I have to eat my words.
    In this version 3.2.1 assigning a place to an image seems also to set the GPS EXIF data, not only the places name as IPICT. What a relieve!  I used to have to assign Places data over over again, because the places information would not be recognized by my other applications. So my advice to you is to upgrade to 3.2.1 if you have not done so.
    I suspect the GPS data you see without "GPS Version"-tags are those you created manually in Places, wheras any other GPS data with GPS Version Tag come from your imported Garmin tracks.
    I have to make further experiments with this new behaviour before I can feel confident to give advice, and I could use a helping hand here. Anyone?
    @Kirby Krieger: I see you have been looking in on this thread, could you please confirm if this new places behaviour is also true in SL, if you have time?
    Sofar I tested the following with several folders and it worked beautifully: Try it.
    Export the folder from Aperture as a Library:   File -> Export -> Project as a library
    Reimport it to Aperture on your other machine: File -> Import -> Library/Project
    Regards
    Léonie

  • How to export table data with coloring of cell according to value.

    Hi all,
    I am using jdeveloper 11.1.1.6
    i want to export table data with lot of formatting. like with coloring of cell according to value and so many.How to do that?

    Hi,
    like with coloring of cell according to value and so many.How to do that?
    Answer is, you can't
    Frank

  • How to export a Graph or Chart from a BW report to PDF file

    Hi All,
    I am new for BI7.  i have one clarification 
    "How the system shall provide the users the ability to export a Graph or Chart from a BW report to PDF file in WAD"
    Thanks In Advance
    Ravi

    You have to use this command and assign your web items to this command to get graphs and charts
    http://help.sap.com/saphelp_nw70/helpdata/en/44/85de4943af5919e10000000a1553f7/frameset.htm

  • How to evolve a graph with only one loop

    1. how to continue to add new nodes to a graph with only one loop
    would like to use graph traversal like my previous post to traversal a binary tree, but this time, it can 
    loop forever, i mean it traverse all nodes in whole graph in the meanwhile it add new nodes too
    assume maximum number of joint is 2 or 3
    computing nightmare

    I just realised that you weren't talking about cyclic graphs (in the case of 1 cycle) here, but meant a single pass traverse and mutate.
    What you don't specify is how the new nodes are being supplied.  If they are supplied up front, then the loop will of course terminate once all the inputs are addressed, rather than going on forever.  If they are being supplied from time-to-time,
    then you need to have some sort of event-wait on input.  The traversal could have a move-next something like this
    If at end of tree with no new nodes, wait for input
    If at end of tree, with input, reset to start
    If at insertion point for new node at top of input queue, insert that
    Move to next node in tree
    This seems the sort of thing that would naturally be coded in a functional language as a tail recursion rather than an iteration.

  • How to edit the cube with new fields without changing historical  in BI 7.0

    HI,
    I have requirment that need to edit cube with new fields and without changing historical data on it.
    Please some one can advise me abt the above scenario.
    Note:I am using BI7.0

    hi Krish,
    In BI 7.0,
    we cannot add a characteristic to an existing dimension if the data is not deleted from the cube.
    It can go to a new dimension and that will not change the existing structure of the cube tables, but will just add to it (as another dim table).  or use remodeling.
    for more details, please seach threads.....
    with hopes
    ARS

Maybe you are looking for