Regarding BI GRAPH BEAN

I am using BI GRAPH BEAN in 10g Form. Graph style is "VERTICAL". I want to show the actual value of data at the top of each bar. Which property of BI GRAPH support this.
Secondly I want to change the color of bars which property support this.
Regards

hi I see you are using BI GRAPH BEAN in forms 10g, I want to know how you did because I can`t configure it yet in forms 10g my email is: [email protected] please hepl me to configure BI GRAPH BEAN in forms 10g

Similar Messages

  • Forms 10g BI Graph Bean - Is there way of printing the graph ?

    Hi All,
    A simple "nice to have" requirement : after producing a graph on the Form using the BI Graph Bean, is there a way of printing it ?
    Regards,
    Steve

    I've actually modified the Bean and solved the problem by writing the graph to a file which can then be printed. This code goes into the FormsGraph code at around Line 1128
                 * Saves the graph as either a GIF or a PNG file
                if (_ID == pSaveGraph) {
                    String sFileName = null;
                    if (_object != null && (String)_object != "") {
                        sFileName = (String)_object;
                        File f = new File(sFileName);
                        if (f.canWrite()|| !f.exists()) {
                            FileOutputStream fo = new FileOutputStream(f);
                            if (sFileName.toLowerCase().endsWith("png")) {
                                m_graph.exportToPNG(fo);                           
                            } else if (sFileName.toLowerCase().endsWith("gif")) {
                                m_graph.exportToGIF(fo);
                            } else {
                               DebugMessage("SAVE_GRAPH: Not a GIF or PNG type file");                          
                            fo.close();
                            return true;
                        } else {
                            DebugMessage("SAVE_GRAPH: cannot write to " +
                                         sFileName);
                            return true;
                    } else {
                        DebugMessage("SAVE_GRAPH: No Filename passed");
                        return true;
                }and then separately I've declared by new ID
         * Allows the graph to be saved
        protected static final ID pSaveGraph = ID.registerProperty("SAVE_GRAPH");So when calling the save graph add in the filename as the 4th parameter eg:
        set_custom_property(v_bean,1,'SAVE_GRAPH',v_file_name);       

  • Accessing BI graph bean from JClient

    We've been trying to work with the graph bean from JClient from within JDeveloper. (The "Panel with Graph" option in File/new/Client tier/Swing/JClient for BC4j)
    It looks like there is nothing in place beyond the simple graph wizard. Documentation is superficial. We can't even get axis labels to show.
    The question is: where can reasonable documentation be found and if it does not exist, is it safe to use this charting product at all?

    Thanks, I've also found http://otn.oracle.com/bibeans903/help/ a few minutes after posting the question. That solved the trouble for now.

  • Accessing BI graph bean from JDeveloper/JClient

    We've been trying to work with the graph bean from JClient from within JDeveloper. (The "Panel with Graph" option in File/new/Client tier/Swing/JClient for BC4j)
    It looks like there is nothing in place beyond the simple graph wizard. Documentation is superficial. We can't even get axis labels to show.
    The question is: where can reasonable documentation be found and if it does not exist, is it safe to use this charting product at all?

    I am not sure what the BC4J team exposed for Help in the release you are using. For 9.0.5 the Graph integration has been greatly improved. You may want to post this message in the JDeveloper or BC4J forums so someone on their team can better assist you.

  • BI Graph bean Slow when opening Form

    Hi
    I have got a form with approximately 4 TABS and 12 BI GRAPH beans on it.
    Unfortunately this slows the form down and its taking 15-20 seconds to open.
    Even if i don't have any code in the form but have 12 beans on it takes this length of time so i know its not my code that creates the graph. Also when I issue a clear all on the form which clears and repopulates the graph the speed is instant. its only when it first opens.
    Is there any way to speed this up or any way anyone can advise on increasing speed on opening.

    Any ideas people
    Apart from taking my 4 tabs and creating 4 seperate forms (which i dont want to do) I dont know how i can help the situation

  • New graphing bean performance

    I have this topic in the Reports forum OpenWorld questions and they suggested I ask the beans questions here.
    I would like to know if the new graphing bean that will be in the next version of Report Server will increase performance? Will it decrease the CPU usage when the DPI setting is set high? If not, will a lower DPI setting yield a better looking graph than the current bean?

    Reply from development:
    I don't know what kind of performance improvement the customer is expecting between 9.0.4.1 (2.7 BI Beans?) and 10.1.2 (3.2.1 BI Beans), but, given that the complaint is related to the high DPI setting, I don't expect the customer to realize a whole lot of benefit from the newer Graph version. The main cost here is the large image that must be created, which increases with the square of the DPI setting. And given the extent to which Reports is integrated with the Graph and its UI, I don't expect the Drake Graph could be run successfully with the 9.0.4.1 Reports Builder.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • Restricting drill in graph bean ?

    Hi,
    Im developing a web bi app (uix) and when the user drill down from graph bean and there is no legend, there is no way to drill up. This is not so nice so i`d like to restrict this from the graph bean. It is possible from UIX or not.
    More generaly, how we can set and get properties of Beans from UIX ??
    Thnx:--PS

    In 11g it is bug....
    For this u should create 3 individual reports (1 for country, 2. Region, 3. Branch) and give action link one to another.
    for filter make sure the required column "Is Prompted" for every detailed reports.
    Pls mark if it helps
    -Chinna

  • Graph Bean Example

    Hi,
    I have downloaded and installed the examples from Oracle and in particular am interested in the Graph Bean.
    Unforunately though i cant see any information on how to deploy this on an application server rather than through dev suite. Is this possible, and has anyone got any instructions on how to do this?
    Thanks

    I found the following inside the java class of the graph bean:
    * Show the data in the Graph clearing out existing data
    * <b>Forms Example:</b>
    * set_custom_property('BeanArea',1,'ADD_DATA_TO_GRAPH','');
    protected static final ID pAddDataToGraph = ID.registerProperty("ADD_DATA_TO_GRAPH");Maybe you should try:
    * Forms property registered to make the Graph display inside of the Forms Bean Container. The
    * Graph resizes itself to fit into the size defined by the Bean Container. The window title can be
    * set by the attribute passed with the Forms call to SET_CUSTOM_PROPERTY()
    * Used with SET_CUSTOM_PROPERTY() from the Form
    * <b>Forms Example:</b>
    * set_custom_property('BeanArea',1,'SHOW_GRAPH','');
    protected static final ID pGraph = ID.registerProperty("SHOW_GRAPH"); // displays Graph in the Forms Bean Container

  • Can not display graph bean for specific chart types in Forms 11g Rel2

    Hi all, I have this piece of code:
    declare
    v_tx_data varchar2(200);
    v_delimitador varchar2(1);
    begin
    set_custom_property('control.BeanArea1',1,'CLEAR_GRAPH','');
    v_delimitador :=',';
    go_block('CLC');
    first_record;
    loop
    v_tx_data := :clc.nb_clase_cliente||v_delimitador||'Monto'||v_delimitador||to_char(:clc.mn_venta);
    set_custom_property('control.BeanArea1',1,'ADD_ROWDATA',v_tx_data);
    exit when :system.last_record = 'TRUE';
    next_record;
    end loop;
    set_custom_property('control.BeanArea1',1,'ENABLE_TOOLTIPS','ALL');
    set_custom_property('control.BeanArea1',1,'GRAPHTYPE',:control.v_tipo_grafico_clc);
    set_custom_property('control.BeanArea1',1,'SET_DEPTH','30,75');
    set_custom_property('control.BeanArea1',1,'SET_DELIMITER','#');
    set_custom_property('control.BeanArea1',1,'SET_TITLE','Ventas x Tipo Cliente#120,234,120#bi#12');
    set_custom_property('control.BeanArea1',1,'SET_DELIMITER',',');
    set_custom_property('control.BeanArea1',1,'ADD_DATA_TO_GRAPH','');
    end;
    The graph type is selected from a list item. It all works perfectly except when :control.v_tipo_grafico_clc takes the following values:
    - VERTICAL_STACKED_LINE_GRAPH.
    - HORIZONTAL_STACKED_LINE_GRAPH.
    Is there a special requirement for this type of chart...? Something i missed reading...?
    Best regards, Luis ....!

    All graphs are working fine.
    This is a list of graphs:
    HORIZONTAL_BAR
    VERTICAL_BAR
    VERTICAL_STACKED_BAR
    HORIZONTAL_STACKED_BAR
    VERTICAL_PERCENT_BAR
    VERTICAL_PERCENT_BAR
    HORIZONTAL_PERCENT_BAR
    VERTICAL_LINE_GRAPH
    HORIZONTAL_LINE_GRAPH
    VERTICAL_LINE_SPLIT_GRAPH
    RING_BAR_GRAPH
    MULTI_RING_GRAPH
    MULTI_RING_PROPORTIONAL_GRAPH
    VERTICAL_STACKED_LINE_GRAPH
    HORIZONTAL_STACKED_LINE_GRAPH
    VERTICAL_AREA_GRAPH
    VERTICAL_PERCENT_AREA_GRAPH
    VERTICAL_STACKED_AREA_GRAPH
    PIE_GRAPH
    PIE_BAR_GRAPH
    MULTI_PIE_GRAPH
    MULTI_PIE_PROPORTIONAL_GRAPH
    RADAR
    STOCK_HIGHLOW_GRAPH
    3D_AREA_GRAPH
    3D_AREA_GROUP_GRAPH
    3D_CUBE_GRAPH
    3D_BAR_GRAPH
    There is diff in size between formsgraph in forms demo pack (http://download.oracle.com/otndocs/demos/forms/11g/demos_11g.zip)
    and formsgraph in Oracle Forms Graph Java Bean Demo (http://www.oracle.com/technetwork/developer-tools/forms/downloads/formsgraph-522400.jar).
    Formsgraph in demo pack is old one (from version 9i) but it's working.
    Regards

  • Regarding CMP entity bean

    in ejb-jar.xml when i add select method "CMP select methods" it get added into CMP entity bean.
    I have added lookup method than got the refrence of LocalHomeInterface in the servlet
    Now my confusion is how to use this method to get the returbed value from that added select method.
    Please guide me.
    regards
    gaurav

    Hi Young,
    From the information you have supplied, my guess is that the SQL
    string that OC4J is sending to SQL-Server is incorrect. So it may
    help if you could see the exact SQL string. In order to see the
    SQL string, I suggest you either run OC4J in "debug" mode, or try
    using "P6 Spy".
    The following web page has details on running OC4J in "debug" mode:
    http://kb.atlassian.com/content/atlassian/howto/orionproperties.jsp
    And here is the web page for "P6 Spy"
    http://www.provision6.com/
    And these other web sites may also be of help (in general):
    http://www.orionserver.com
    http://www.orionsupport.com
    http://www.atlassian.com
    http://www.elephantwalker.com
    Good Luck,
    Avi.

  • Regarding BI Graph Installation in Forms

    Hi All,
    I am new to BI Graph. I have a requirement to embed BI graph in oracle forms 10 g. I am working on Forms 10g in Linux platform. Can you please mention the steps that i should do to embed the graph. I got the demos but only the windows version. Do we have a Linux version of the same as well.
    Thanks and Regards,
    Ajith

    No. All the development happens in Linux and forms is also installed in Linux only.

  • Regarding deployment of bean

    Hi,
    do i require to deploy in PI/NWDI standard Bean like Message transformation bean inorder to use the bean.
    Thank You,
    Madhav

    Hi Madhav,
    no need to deploy the standard modules like Message Transofrmation Bean explicitly.
    For more information go through the below link:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/57/0b2c4142aef623e10000000a155106/frameset.htm
    Regards
    Venkat

  • Regarding control graphs for external values

    I have a set of values for a month for a particular material.
          day             qty.
    ie  20080801      10
        20080802       15
        20080830       30.
    I used GFW_PRES_SHOW
    function module to plot values.
    The control limit for the material is 30. I want to encorporate this value also in the graph and show the deviation.
    Plz help me with some other function module
    for control limit graph for external values.

    hi,
    check this function module.
    GFW_PRES_SHOW_MULT.
    also use these programs.
    DEMO_GFW_PRES_SHOW_MULT
    DEMO_GFW_SHOW1.

  • Query Regarding Hide/Show Bean

    All,
    Is there any way by which we can control rendering (Controller processRequest call)of the Hide/Show and one click and disclose it, Render it.( Controller processRequest call)
    Seen that even if the hide/show is in hidden state , still the Region controller processRequest is being called. If this is the case, how the hide/show component is advantageous over other webBeans on performance view point?
    Thanks
    Joseph

    My requirement is not call the processRequest of the region when its not rendered in disclosed mode.
    >>> When a bean is enabled on a page, its associated controller will always be called. Its the standard behavior. How would you otherwise do the related processing if some action is performed on the bean? Check the initial chapters of dev guide on the page bean rendering and controller method calls.
    If you have some conditional code, put it inside the main page's controller and execute on show/hide bean's status.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Regarding comparision graph

    Hi Experts,
    i have a requirement from client .they want a weekly based report.in which we have two prompt they will select different week from these prompt and report should show line graph for both week in same graph.
    when i tried i am getting only single line graph.
    Plesae suggest the solution.

    Hi,
    If i understood your requirement correctly, what is the x-axis and y-axis been taken in the line graph???
    Assuming x-axis is week and y-axis is amount you would get only line graph
    But you said you have 2 different prompts of week for say week1=xyz and week2=abc is selected in the prompt.Then consider the week2 column into the graph also so you would get 2 line bar graphs.
    Cheers,
    KK

Maybe you are looking for