How to indicate range on graph.

I would like to indicate an acceptable range of
values on my xy graph. The x axis is force and
the y axis is displacement. At the end of the
test, the force should be between 40 and 50 lbs.
I would like to put some sort of markers or
cursors to indicate this range. Is there some
way to draw on a graph? I tried to overlay a
bitmap image without much sucess.
Thanks,
Bert
Sent via Deja.com http://www.deja.com/
Before you buy.

[email protected] wrote:
> I would like to indicate an acceptable range of
> values on my xy graph. The x axis is force and
> the y axis is displacement. At the end of the
> test, the force should be between 40 and 50 lbs.
> I would like to put some sort of markers or
> cursors to indicate this range. Is there some
> way to draw on a graph? I tried to overlay a
> bitmap image without much sucess.
>
The easiest way to do this is make the graph a multiplot graph.
Create a bundle that contains the plot of the limits.
Send the data to one node of a Build Array and send the limits to the other
send the multipot to the graph. Now you have visible limits on the plot.
Kevin Kent
Attachments:
Kevin.Kent.vcf ‏1 KB

Similar Messages

  • How can I cache dvt graph results?

    Hello colleagues, I need some help regarding dvt graphs performance.
    In our application we have big amount of data which the user can filter by adding grouping options, time ranges, etc. For the graph to be updated (the query to be re-executed), the user has to press a "Refresh" button each time he changes the query parameters.
    Once the new results are displayed in the graph, the user can change the graph type by pressing either a pie, bar, line or table buttons. As a consequence of this, the query is re-executed and returns the same previous results. This obviously drops the performance of the application.
    So, how we can manage to refresh the type of graph (for example from pie to bar) without re-executing the query. Note that the "Refresh" button should always re-execute the query even if the parameters were not changed.
    I'll appreciate your help.
    Regards,
    Nicolas
    Edited by: 864814 on Oct 14, 2011 6:05 AM

    And by the way how are you switching the graph type? Are you using an af:graph tag and switching just the type? Or are you rendering a complete new graph on your page?

  • How to use ranges?

    Hi all,
    can any body explain how to use ranges?  i used like below..
    but im not getting pls  correct it...
    RANGES : HKONT FOR BSEG-HKONT.
    DATA : WA_HKONT LIKE LINE OF HKONT.
    START-OF-SELECTION.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725140'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725120'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725110'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725190'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725130'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725160'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725180'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725150'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    WA_HKONT-SIGN = 'I'.
    WA_HKONT-OPTION = 'EQ'.
    WA_HKONT-LOW = '10725170'.
    WA_HKONT-HIGH = ' '.
    APPEND WA_HKONT TO HKONT.
    CLEAR WA_HKONT.
    and in select quer i have used like this.
    SELECT BUKRS
           BELNR
           GJAHR
           BUZEI
           HKONT
           LIFNR
           DMBTR
           KTOSL
           WERKS
           SEGMENT
           FROM BSEG INTO CORRESPONDING FIELDS OF TABLE IT_BSEG
           FOR ALL ENTRIES IN IT_BKPF
           WHERE BUKRS = IT_BKPF-BUKRS
           AND   BELNR = IT_BKPF-BELNR
           AND   GJAHR = IT_BKPF-GJAHR
           AND   LIFNR IN S_LIFNR
           AND   WERKS IN S_WERKS
           AND   HKONT IN HKONT
          AND    KTOSL = 'FR1'
           AND   SEGMENT IN S_SEGM.
    pls  help...

    Hi Sameer,
    Let me share my solution with you.
    try with this....
    RANGES : HKONT FOR BSEG-HKONT.
    INITIALIZATION.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725140'.
    APPEND  HKONT.
    CLEAR HKONT.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725120'.
    APPEND HKONT.
    CLEAR HKONT.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725110'.
    APPEND  HKONT.
    CLEAR HKONT.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725190'.
    APPEND HKONT.
    CLEAR HKONT.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725130'.
    APPEND  HKONT.
    CLEAR HKONT.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725160'.
    APPEND HKONT.
    CLEAR HKONT.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725180'.
    APPEND HKONT.
    CLEAR HKONT.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725150'.
    APPEND HKONT.
    CLEAR HKONT.
    HKONT-SIGN = 'I'.
    HKONT-OPTION = 'EQ'.
    HKONT-LOW = '10725170'.
    APPEND  HKONT.
    CLEAR HKONT.
    Hope this helps you. Reply for queries, shall post the updates.
    Regards. 
    Kumar.

  • HT202879 How do I insert a graph on a pages doc?

    How do I insert a graph on a Pages Document?

    Insert menu -> Chart
    If this is a graphic created by some other software:  Insert menu -> Choose
    Regards.

  • ALV Graphs: How to set line type graph as default graph

    Hi All,
    I need to develop a line graph. The fields on the X-axis will change dynamically. Some times they may be 10 field and some times they may be more than 100 fields. I tried with Function Module GFW_PRES_SHOW_MULT. But I can only display maximum 32 fields. Can anyone tell me exact program which helps me to full fill my requirement. It will be a great help if you could told how do display line type graph as default graph in ALV.  In REUSE_ALV_GRID_DISPLAY there is a Exporting parameter MT_CHART_TYPES but this help you only to enter description for X-axis and Y-axis.
    Many thanks in advance.

    I would call GRAPH_MATRIX_2D with options depending on representation you wish
    look at the program GRBUSG_1 to see how to use it
    there you have some options to display bar chart, but you could use other values (complete list of options is available in documentation of function module GRAPH_MATRIX_2D - click on parameter OPTS in help display to see full explanation)
    exemple:
    P2TYPE = LN to display lines

  • HOW TO DESIGN RANGE SELECTION IN MODULE PULL LIKE SELECT-OPTION.

    HOW TO DESIGN RANGE SELECTION IN MODULE PULL LIKE SELECT-OPTION.
    how can we add range selection in screen painter.
    regards.

    Hi,
       create two input fields and a push button like select option in the screeen.
    Try checking this logic
    <b>Program:</b>
    <b>ranges</b> ra_matnr for mara-matnr.
    <b>Layout field name declaration:</b>
    Give the low field name as ra_range-low
      and high field name as ra_range-high.
    extension for pushbutton.--exten(function code)
    next -- function code for the enter key.
    PBO
    module status_3000.
    PAI
    module user_command_3000.
    <b>module user_command_3000.</b>
    if sy-ucomm = exten.
      call screen 400. (screen which shows extension values can be kept).
    elseif sy-ucomm = Next.
    if ra_matnr-low is not initial.
        ra_matnr-SIGN = 'I'.
        ra_matnr-OPTION = 'EQ'.
        APPEND ra_matnr.
        clear ra_matnr.
    endif.
    if ra_matnr-high is not initial.
        ra_matnr-SIGN = 'I'.
        ra_matnr-OPTION = 'EQ'.
        APPEND ra_matnr.
        clear ra_matnr.
    endif.
    endif.
    endmodule.
    module status_3000.
    read table ra_matnr  index 1 into ra_matnr .
    set pf-status '3000'.
    set title '3000'.
    endmodule
    Br,
    Laxmi.

  • How to create a pie graph in 10g or 9i forms using beans??

    Hi..
    Please can anyone show me how to use pie graphs in oracle 10g or 9i forms using bean?
    i also want to know how to put data in pie graph.. as u know in column graph for example we have an x-axis and y-axis,and in pie there is no x-axis and y-axis.. so how i can put the same data in pie graph.. and also i may need more than one value for the x-axis or the y-axis to use in pie graph so how can i do it??
    i use set_custom_property to call properties in beans.
    I would so thankful for how can answer me.. please its urgent
    Thanks.

    there are some other posts to this topic - How to create a pie graph in 10g or 9i forms using beans?? and so on.
    use the search function of this forum. this may the fastest way for your urgent question

  • How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?, How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?

    How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?, How do I create a graph with two different y-axis variables with the same x-axis (therefor having two curves)?

    Hi Libby,
    Select all three columns of data. All three must be 'regular' columns, not Header columns, and the X values must be in the leftmost column.
    Click the Charts button and choose the Scatter chart.
    The resulting chart will initially show only the first and second columns of data, and the selection will have been reduced to show this.
    Click the gear icon at the top left of the selection and choose Share X Values.
    You should see a result similar to this:
    Notes:
    The values on my sample table contain a random element, so they have changed from thhe first image to the second.
    The chart is as created by Numbers, with two edits:
    Data points have been connected with curves, using the Chart nspector.
    The curves were selected and their stroke increased to 2pts, using the stroke formating button in the format bar.
    Regards,
    Barry

  • How to connect with waveform graph?

    hi
      i would like to know how to simulate wave form graph the input is randon number ?My problem is i cannot connect with wave form graph...
    can u show me example..like using arrary...or something else..i looking forward ur reply
    thank u

    I have an example that you may want to look at here.
    The example was for a signal generator, but there is a waveform graph to show the selected waveform.  It is an extremely basic program, but might be a good start.
    RayR

  • How to display on the graph three or more waveforms where time scale is not an index of array but a real time

    How to display on the graph three or more waveforms where time scale is not an index of array but a real time:
    I measure three voltages Va, Vb, and Vc on my Test stands every 3sec. So I’m building four arrays (Va, Vb, Vc, Time) and combine all in one.
    Time
    Va
    Vb
    Vc
    0
    5
    3.5
    2.8
    3
    4.9
    3.6
    2.9
    6
    4.8
    3.8
    2.1
    Now I need to show on the graph in which scale X is “Voltage” and scale Y is “Time”.
    How can I do it?
    Thanks a lot,
    Boris

    Hi, thanks all your reply.
    You may find "points_to_bar_graph.vi" from this website, I find it by this way.
    I will ask a stupid question: I don't have any photo processing software, how can I save the vi into a picture format?
    So here I just paste it into word document.
    Attachments:
    question.doc ‏520 KB
    points_to_bar_graph.vi ‏62 KB

  • How to transfer range parameter from vb when using bapi calling

    Hi,everyone.how to transfer range parameter from vb when using BAPI calling?

    Did you get the solution to your problem?  Can you please share it with me. I have a similar problem. I have a VB program that calls RFC function. It works with a single parameter but not with a range of parameters. If you have the solution, could you please share sample codes with me? Thank you so much.

  • How can I get my graph to plot vs. my data points instead of vs. time?

    how can I get my graph to plot vs. my data points instead of vs. time?

    Maybe you could exaplin in a few more words what "my data" is. Are the values equally or randomly spaced?
    If they are equally spaced, just adjust offset and multiplier, and axis label.
    If they are randomly spaced you are probably looking for an X-Y graph. Check the shipping examples.
    LabVIEW Champion . Do more with less code and in less time .

  • How do I resize a graph?

    Hello,
    how do I resize a graph? From what I can see, I can only set its size when I create it?
    I guess I could Transform > Scale an existing graph - but I'd rather set a fixed width and height so I can keep the proportions right for when I import the graph into InDesign.
    Thanks!

    The final size of your graph depends amongst other things on the size of the type and the number of digits in the XY values. So rescaling with either the Scale ot Transform tools is almost always necessary. I suggest snapping ruler guides to a rectangle which is in the correct size may be a good idea. Then you can always snap your graph to fit to the guides. Be aware that simple scaling will result in the type becoming distorted. You can select the type by double (or treble)-clicking on one of the digits with the Direct Selection (white arrow) tool. That way you select the whole group to adjust the size of the type.

  • How to make a simple graph

    This is my first use of Numbers. I made a chart to list equipment for my insurance company. Pretty easy, but I would like to make a graph that shows me the percentage of equipment cost for each of the 5 categories. Here's what I have:
    Column A: Quantity
    (then I list manufacturer, item name, serial number)
    Column D is Category
    Column E is Item Cost
    How can I build a graph that shows the total cost for each category? I bet this is easy.... but it eludes me!
    Thanks!

    Wow, thank you very much for your reply! I think that what you describe is what I did to the the column for the replacement cost for the items. I had =A*F to put the extended cost for each item where A=Quantity and F=Item Cost and G=A*F (total replacement cost). That worked very well to do the math for me.
    But where I'm stuck, and it may be the terminology confusing me is my column E for Category. All of my items are broken up into one of 4 categories. I would like to get the total cost (column G) broken down by the categories in column E. I wonder if this makes sense.
    If I select column E (Category) and choose a chart, it breaks things up by column A which is the quantity. I'm wondering if I were to make column A the category it would automatically break things down by category then. I wish I could post a screen shot. Maybe you understand my verbal description?
    Thanks!

  • When using the rectangle tool in CS5, a graph appears in the shape. How do I turn the graph off?

    When using the rectangle tool in CS5, a graph appears in the shape. How do I turn the graph off?
    Thanks!

    It might be the pixel grid if your zoomed in greater than something like 500% to 700%.
    Go under View>Show and uncheck Pixel Grid.
    Or maybe you have a layer style set in the tool options bar for shape layers.

Maybe you are looking for

  • How can I send my response to the required thread

    Let me try and explain my question: My request is coming from an apllication and going to another but meanwhile the 1st connection has to be kept open and it will get response based on response coming from 2nd application Now since the control has go

  • Import Intrastat DTW

    Dear all, I try to import some data to the Table BNITMDV (correspoding ti the window Item Intrastat setting of the Intrastat Addon). The aim of the import is to create some records with the Item Code and the Commodity Code. Here is a sample of my DTW

  • Idoc ORDERS05 for PO Outbound for the Output type ZSUS.

    I have a standard Idoc ORDERS05 for the PO. I have Extended this Idoc and Created a Z- Segment below E1EDKA1 which is ZE1EDKA1. There are Four Fields in it. i.e. ZZFNAME, ZZLMAE, ZZEMAIL & ZZADDRESS. When I create the PO using ME21N OR Change using M

  • TCP communicat​ions via C program with VI on a PC (SGI - Windows)

    I have a pair of simple (more at prototype) client/server C programs on an SGI host. On the SGI, they compile and run fine (using separate windows). I know what the server is supposed to be sending (C floats) and the client is reading the correct val

  • Aperture 3 import date format

    Okay its a matter for me to stick with it or pick up something else. I am hoping someone could help me here. How do I change date format of project name while importing. Whenever I try to import whether from camera or local folder, it always gives th