How to get reference of second diagramm axle

i want to to scale my diagramm automatically, but i don´t know how i can get the reference of the second y-axle?Message Edited by reen on 06-01-2005 03:28 AM
Message Edited by reen on 06-01-2005 03:28 AM
Attachments:
frontpanel.JPG ‏63 KB
diagramm.JPG ‏50 KB

hello,
if it's an chart, then use the property "History Data", which is in the bottom of the property menu and wire an empty array.
regards,
robert h

Similar Messages

  • How to get reference of a SessionBean From RemoteClient

    How to get reference of a SessionBean in a ApplicationServer from another SessionBean running in Another ApplicationServer

    Hi
    There is a method, getHandle() on the EJBObject interface that your remote interfaces extend. This handle can be used to pass a reference to an EJB to someone else (possibly running in another JVM). You can then call getEJBObject() on the Handle instance and get your remote interface on which you can call methods. Should be able to cast it to your specific bean.
    I haven't done this, so definitly test it out, but I think this is what you want to do.
    check it:
    http://mail-archive.objectweb.org/jonas/2000-12/msg00064.html
    I suggest u not to go for more complex code, make it simpler, or if its really required use it as a webservice
    Regards
    Abhijith YS

  • How to get Reference on files of my ADF Shared Library

    Dear All,
    Use case:
    I have compiled one project into a shared ADF library. This project has a ViewController.
    In it are some common css files that I would like to reuse.
    Now, I have a new project and have linked to that ADF library using Resource Palette.
    In my JSFF file, I tried to link to the CSS in my shared library
    <af:resource type="css" source="/com/test/common.css"/>But I cant seem to get the styleclasses in that shared library.
    I have checked at Firebug console and I notice that I am getting a 404 when I am requesting for the said file.
    What should be the correct path for me to get a reference to the CSS Files?
    Thanks
    JDEV 11G PS3

    Duplicate of How to get Reference on files of my ADF Shared Library
    Edited by: Bijesh Krishnadas on Aug 17, 2011 9:13 PM

  • CS3 VB how to get reference to a text frame?

    Hi there,
    I got a text frame in a document with a table inside. In first cell of the table there is another text frame with table. How to get a reference to the first text frame from the frame inside of the cell?
    text frame in a cell has a character as parent, character has a cell as parent, cell has table as a parent - in this place there should be the right text frame as a parent of a table, but unfortunatly there is a story! so any idea how to get the text frame from there?
    regards

    thx again Harbs,
    believe me - I am watching all stuff at the watch window of VB6 - there is not even one insertion point which has a ParentTextFrames - if I try to adres it I get an error. VisualBasic do not allow syntax like InsertionPoints[1] - it allows something like this:
    InsertionPoints(1) but it is the same like InsertionPoints.Item(1). In both cases it doesn't works - all object has ParentTextFrames.Count = 0.
    Anyway I found a solution for my problem:
    innerFrame.Parent.ParentStory.TextContainers.Item(1) is the right text frame - don't ask me why....
    regards

  • How to get higher and second higher value in one row?

    Hello world,
    I want to get higher and second higher sal from emp in one row ,,
    Thanks

      1  select e.empno, e.ename,  e.sal,  lag(sal) over (order by sal) next_sal    from emp e
      2* order by sal
    SQL> /
         EMPNO ENAME             SAL   NEXT_SAL
          7369 SMITH             800
          7900 JAMES             950        800
          7876 ADAMS            1100        950
          7521 WARD             1250       1100
          7654 MARTIN           1250       1250
          7934 MILLER           1300       1250
          7844 TURNER           1500       1300
          7499 ALLEN            1600       1500
          7782 CLARK            2450       1600
          7698 BLAKE            2850       2450
          7566 JONES            2975       2850
         EMPNO ENAME             SAL   NEXT_SAL
          7788 SCOTT            3000       2975
          7902 FORD             3000       3000
          7839 KING             5000       3000

  • How to get references to project´s entities?

    Hi there,
    is there any straightforward way of getting reference to project´s entities? The idea is get a collection/array of all the entities enumerated at the persistence.xml via some JPA class. Is this possible?
    Thanks for any hint!

    Hi
       You should not set the attributes at the DOINIT, as the view will not be created that time.So what i suggest is , create it DOMODIFY .
    As i said in my previous post , create five attributes in the component controller.
    like l_view1,l_view2,l_view3...etc. of type if_wd_view_controller.
      And now go to each view's modify method. And write the following code.
    Data: lo_api               TYPE REF TO if_wd_view_controller.
    If first_time = 'X'.
      lo_api = wd_this->wd_get_api( ).
      wd_Comp_Controller->l_view1 = lo_api.
    endif
    And you could access this view controller , anywhere u want by using  wd_Comp_Controller->l_view1
    Thanks
    Anzy
    Award points if this solves your issue.
    Message was edited by:
            Mohammed Anzy S

  • How to get reference of UI controls in a JSON Controller?

    Hi Experts,
    This time I was looking to create a JSON view and I was successful in creating and including various UI controls in the view. However, I am not able to get the reference of the UI controls within the controller. Initially, I thought using same set of methods of CORE I can get their reference. But I, I am not able to see any thing getting filled.
    Please find the below screen shots about my view definition and controller implementation.
    Please provide some inputs
    Regards
    Pavan

    Hi Robin,
    Ok, then Let me conclude my understanding based on your opinion
    1. A View definition consists of UI controls, and their associated binding definitions(anything missing?)
    2. A Controller consists of Model implementation , and as you said initializations, event handlers, and helper methods.
    If my understanding is correct then an application can have various models and do the view recognizes or  understands all of them.  Otherwise what kind of approach should we follow.
    In the controller definition do I have to include the line sap.ui.core.getCore().setModel() for each of the models that I define. As per my understanding this statement makes the model available for all the elements within the view.
    Please correct me if my understanding is incorrect.
    I agree with your point but still if I have to access the reference of UI element in the controller how can I get that in the above context.  Please Share some inputs
    Thanks for pointing me in right directions
    Regards,
    Pavan

  • How to get value in Second Drop Down based on selection made in first dropd

    Hi All,
    I have a table with first two columns as dropdown.
    The values in first drop down are fixed. However the value in second dropdown should be populated based on selection made in first .
    e.g
    First Column had different departments say IT, SALES, HR.
    Based on department selected I have to populate employee of that department.
    For first dropdown I have taken Drop down by index.
    What should I select for second drop down and achieve desired functionality? Please guide.
    Regards,
    Madhvika

    Hi
    Use drop down by key for fixed values IT, SALES, HR. create on_select action for that drop down.
    in on_select method code like this..
      DATA lo_nd_segment1 TYPE REF TO if_wd_context_node.
      DATA lo_el_segment1 TYPE REF TO if_wd_context_element.
      DATA ls_segment1 TYPE wd_this->Element_segment1.
      data lt_segment1 type wd_this->elements_segment1.
      DATA lv_segment TYPE wd_this->Element_segment1-segment.
      data lr_column type ref to cl_wd_table_column.
    navigate from <CONTEXT> to <SEGMENT1> via lead selection
      lo_nd_segment1 = wd_context->get_child_node( name = wd_this->wdctx_segment1 ).
    get element via lead selection
      lo_el_segment1 = lo_nd_segment1->get_element( ).
      lo_el_segment1 = WDEVENT->GET_CONTEXT_ELEMENT( 'CONTEXT_ELEMENT' ).
    get all declared attributes
      lo_el_segment1->get_static_attributes(
        IMPORTING
          static_attributes = ls_segment1 ).
    now ls_segment1 contains your first drop down selection value.
      DATA : lv_dropdown type string .
      lv_dropdown =  ls_segment1-segment.
      if lv_dropdown = 'IT'.
    // here fill your second drop down based on IT value.
    endif.
    Hope it solves.
    Cheers,
    Kris.

  • How to get Reference Doc from copy from button

    Hi..
    I would like to know if there is a way to get the source document or reference document number with-out  sdk or add on development , if you used the copy from button to populate the data?
    sample
    in order entry you can populate the data by using the copy button then choose sales quotation,  then using formatted search or select statement could i get the source documents (sales quotation number)..
    thanks
    Loren

    Hi Loren,
    If you need to get the BaseRef field before saving the document you can use the screen reference in your query:
    SELECT $[$38.44.0]
    Just selects the BaseDocument reference number from a row.  You may want to also use:
    SELECT $[$38.43.0]
    To get the Base Document Type (sales quotation, delivery etc.)
    Bob Richardson

  • How to get reference of application component in anothor component?

    Hello Friends
    I have one problem so plz help me.
    Thanks in advance.
    I have two file one is application and other is component. I have created Dividedbox in application and i put two buttons in component and used component in application. Now i want to change the direction of dividedbox when i click on button. I have written code but not working. Following is my code.
    Application file:  test.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"  xmlns:ns1="*">
        <fx:Script>
            <![CDATA[
            ]]>
        </fx:Script>
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <mx:DividedBox id="plistdvidebox" direction="vertical" width="100%" >
            <s:Group id="grp_rlpart" width="100%" height="100%">
                <s:layout>
                    <s:HorizontalLayout paddingTop="10" paddingLeft="10"> 
                    </s:HorizontalLayout> 
                </s:layout> 
                <s:Label text="Left ot top part"></s:Label> 
            </s:Group> 
            <s:Group id="grp_rrpart" width="100%" > 
                <s:layout> 
                    <s:HorizontalLayout paddingTop="10" paddingLeft="10"> 
                    </s:HorizontalLayout> 
                </s:layout> 
                <s:Label text="right or bottom part" /> 
            </s:Group> 
        </mx:DividedBox> 
        <ns1:tc x="90" y="156"> 
        </ns1:tc> 
    </s:Application> 
    Component File : tc.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
             xmlns:s="library://ns.adobe.com/flex/spark"
             xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300">
            <fx:Script>
                <![CDATA[
                    import mx.containers.BoxDirection;
                    protected function btnhr_clickHandler(event:MouseEvent):void
                        var t:test=new test();
                        t.plistdvidebox.direction=BoxDirection.HORIZONTAL;
                    protected function btnvr_clickHandler(event:MouseEvent):void
                        var t:test=new test();
                        t.plistdvidebox.direction=BoxDirection.VERTICAL;
                ]]>
            </fx:Script>
            <fx:Declarations>
                <!-- Place non-visual elements (e.g., services, value objects) here -->
            </fx:Declarations>
        <mx:HBox>
            <s:Button id="btnhr" content="HR" click="btnhr_clickHandler(event)" />
                <s:Button id="btnvr" content="VR" click="btnvr_clickHandler(event)" />   
        </mx:HBox>
    </s:Group>
    Plz tell me how to do this?
    plz reply me fast.
    Thanks
    Manjurhusen

    Check this:
    http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7e3a.html

  • How to get reference name in the class

    i have a doubt in java.
    class x
    public String toString()
    // code here i want
    class y
    p s v main(.....)
    x servlets=new x();
    x jsp=new x();
    s.o.p(servlets);
    s.o.p(jsp);
    the result i want is :
    hai servlets
    hai jsp
    what code to be in toString().

    You can't get hold of the variable name at runtime. If you want that output, you'll need to create it like this:
    x servlets=new x("servlets");so that the x.toString() can know which string to print out.
    Message was edited by:
    johannef

  • How do I get to the second page of a table of contents?

    I have purchased several books that are long enough that their interactive tables of contents require more than one page. I have not been able to figure out how to get to the second or subsequent pages of the table of contents. Tapping or swiping the right side of the page does not advance the page as it does within the book itself, and it does not scroll down as though it were a long one-page list. Tapping on the table of contents icon again does not advance to the next page either. How do I change pages of a table of contents to select a chapter or book beyond the first page of the contents list? This is not addressed in the User's Manual.

    No, sorry.

  • HOW TO GET REFFERENCE OF INDICATOR OF TYPE DEF CLUSTRE

    Have 2 quastions:
    1. Have a type def culster of boolian indicators.
        how to extract individual references so I can pass them to sub vi.
    2. Since bollian indicators dont latch its value.
        Can I make an array of boolian indicators that will keep its value hen passes to sub vi.
    Thanks.
    Solved!
    Go to Solution.

    Neos wrote:
    Actually the example was to just show how to get reference of individual controls of cluster.
    whatever the OP wants to do with refrences its his choice.
    Firstly, I got a little confused because you had thanked me and so I thought you were the OP for a moment.
    Secondly, though - your example added just enough obfuscation that the OP did not understand that this was actually an exercise to get references from a cluster.
    I know you used the property nodes to bring out the reference wires.  If the wires were connected to indicators that said "control reference" it would probably have been clearer.
    One thing you should note is that if a pupil does not get the concept you are trying to teach, 99% of the time it is the teacher's fault.
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • How to get object which is created previously?

    Hi ,
    My question is that how to get reference of the object which is created previously using reflection API.
    that means,
    suppose i created one instance of class : ABC
    Class classAbc = Class.forname("ABC"); //load the class ABC.
    Object abcClassObject =classAbc.newInstance(); // create an instance of classABC.
    now how do i retrieve that object which is referred by ref. variable abcClassObject?
    expecting a favourable reply,
    Thanks & regards ,
    Swapnil

    My question is that how to get reference of the object which is created previously using reflection API.
    Object abcClassObject =classAbc.newInstance(); // create an instance of classABC.
    now how do i retrieve that object which is referred by ref. variable abcClassObject?abcClassObject is already a reference to it. Just use it. Nothing further required.

  • How to get additional field from the second list base on lookup information column ?

    Hi everyone,
    Currently I created a SharePoint hosted Apps project and I need to know how can I get additional field from the second list base on lookup information column. example List1 Have 2 columns column1 and column2(Lookup Information from list2 (category)),
    List2 have 3 columns title, and category, and color.  so how can get the title and color from list2 base on this lookup information column (SharePoint Hosted apps and Javascript code)? that is possible?
    Best regards,
    ------------------------------------------------------------ ---Tola---

    You can build one custom lookup control. Refer to the following post
    http://www.stuartroberts.net/index.php/2012/10/03/enhanced-lookup-field-part-1/
    Alternatively, try the following solution from codeplex
    http://sp2010filteredlookup.codeplex.com/
    http://filteredlookup.codeplex.com/
    --Cheers

Maybe you are looking for

  • RE80 - Error while Creating Business Entity

    Dear All, I m getting one error while creating the Business Entity using RE80 Tcode. The error is "Section code is Mandatory, as EWT is active". Please tell me how to solve this issue. waiting for your solutions. Regards, Sanket.

  • Regarding report painter (GR52)

    Hi All, I need to chage a report painter. I can explain you this clearly with following example. BG10 this runs BSGC012A, BSGC012B, and BSGC012C  under the D1A folder of report painter. Now actually there are 13 company codes on the screen.Now we nee

  • How to mark ALBPM messages as non-persistent?

    Hi, When using the WLS JMS Server, persistence for the messages sent through the queue is not required since ALBPM uses the JMS Queue as a dispatching mechanism only. However, since the messages sent to the Queue are marked as "Persistent", you must

  • Severe Harddrive Capacity Discrepancy

    Hello! To begin with, I am using a white 2008 Macbook. I purchased it new, and have had few serious problems. I am running OSX Leopard 10.5.8, having never upgraded to Snow Leopard due to only have 512 MB of SDRAM. I've been doing some cleaning on my

  • Context menu for chart not accessible when VI is running

    Hi I've got several LabView programs, all showing a chart to display data received via RS232. In all my application i can change update mode, autoscale etc. by right click on the chart (context menu). In one of my app the context menu does not pop up