Graphs in APEX?

Hi All,
How do we implement Graphs in Apex..As i had heard that new version Apex 3.2 supports graphs..
Kindly help me out in this in this regard..
Thanks,
Anoo...

Please follow the steps: You can see chart demo to get more ideas.
Home
Learn Application Express
Demonstrations
Chart
HTH,

Similar Messages

  • Problems with Flash Line Graphs

    I have two problems with the new Flash Line Graphs in APEX 3.1
    1. I have created a query that returns a set number of rows. Sometimes the VALUE for a specific row might be null. When this occurs the LABEL data does not show up on the X axis. I want the LABEL data to show up no matter what. How do I accomplish this?
    2. Related to the above query. When the VALUE field is null for 3 records (or more) in a row, not only does the LABEL data for those records not display, the VALUE and LABEL data for the records that appear in the set after these 3 records also do not display. If one or even two null VALUE fields appears in a row, things are still OK. What do I need to do to get all my data to display?
    Any help would be appreciated.
    THANKS
    Raymond

    Raymond,
    For the Interactive report chart issue, could it be related to this?
    Re: Apex 3.1. Interactive Report. Questions and Problems.
    Interactive Report. Chart. Seems to be bug...
    - Christina

  • Creating graphs with bind variables in series query

    I am creating a page with 2 regions for for getting date range and other for getting Graph drawn on the basis of dates. But when I am using dates values like some field>=:PX_DAT1 the series doesn't work and gives data not found error.
    Some guru please help.

    Gaurav Bhargava wrote:
    What I want is use dates in query to fetch data for graph. Please if you have a demo page where I can see settings and create such page.Sorry, I havent really done much with the graphs in Apex - so dont have a sample to try out, was just trying to think of ideas. Is it XML? Maybe try putting the parameter in the alternative syntax &ITEM_TIME. (with the period at the end.)

  • How to reduce the scale size of HTML graphs

    Hi All,
    i created HTML Graphs in apex 4.0. Can any one tell how i decrease scall size of the graph beasue i saw the options there is min 200 scale size. How to reduce below 200 ?
    Looking forward for the valueable response.
    Regards,
    Omzz

    Have less photos? Really the question is a bit vague and there is no way to redice the size of the library. You can move a library to an external disk:
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • Line graph with single values as dots

    Dear Apex experts,
    I have the requirement to create a graph in Apex which displays technical values as dots or candles and limit values and average values as lines in one graph.
    Is there a way to create two types of graphs in one image ?
    Best regards,
    Daniel

    Hi,
    as far as I know, you can't have interruptes series in the DVT line graph
    Frank

  • Problem with xml

    hi all
    I am encountering a strange problem when i implement timeline graphs [http://apex.oracle.com/pls/otn/f?p=50734:2:5792901813709709::NO |http://apex.oracle.com/pls/otn/f?p=50734:2:5792901813709709::NO ] everything is working fine but in the process is not generating the xml from table. Iam using the same code and tables.I have checked it by calling the process from url and found the xml content is not generated as expected, instead only htp.p('Phone: ' || pPhone); statement is executed and output is printed in the browser. But when i implemented the same in apex.oracle.com workspace it is working fine and i can see all the xml content when i checked from url.
    Iam wondering whether there are any issues in my workspace that effect the generation of xml or are there any setting to be made in workspace.
    create or replace package TLTest is
    procedure AllEmps;
    end TLTest;
    create or replace package body TLTest is
    procedure WriteHeader is
    begin
    owa_util.mime_header('application/xml', FALSE );
    owa_util.http_header_close;
    htp.p('<data>');
    end;
    procedure WriteFooter is
    begin
    htp.p('</data>');
    end;
    procedure WriteEvent(pName IN Varchar2,
    pHireDate IN Date,
    pPhone IN Varchar2) is
    begin
    htp.p('<event');
    htp.p('start="' || to_char(pHireDate, 'Mon DD YYYY') || ' 00:00:00 GMT"');
    htp.p('title="' || pName || '">');
    htp.p('Phone: ' || pPhone);
    htp.p('</event>');
    end;
    procedure AllEmps is
    begin
    WriteHeader;
    for rec in (select Trim(first_name || ' ' || last_name) name, hire_date, Phone_Number
    from employees)
    loop
    WriteEvent(rec.Name, rec.hire_date, rec.phone_number);
    end loop;
    WriteFooter;
    end;
    end TLTest;
    I hope i have made it clear. Any tips.
    thanks in advance
    Pavan

    hi all
    I am encountering a strange problem when i implement timeline graphs [http://apex.oracle.com/pls/otn/f?p=50734:2:5792901813709709::NO |http://apex.oracle.com/pls/otn/f?p=50734:2:5792901813709709::NO ] everything is working fine but in the process is not generating the xml from table. Iam using the same code and tables.I have checked it by calling the process from url and found the xml content is not generated as expected, instead only htp.p('Phone: ' || pPhone); statement is executed and output is printed in the browser. But when i implemented the same in apex.oracle.com workspace it is working fine and i can see all the xml content when i checked from url.
    Iam wondering whether there are any issues in my workspace that effect the generation of xml or are there any setting to be made in workspace.
    create or replace package TLTest is
    procedure AllEmps;
    end TLTest;
    create or replace package body TLTest is
    procedure WriteHeader is
    begin
    owa_util.mime_header('application/xml', FALSE );
    owa_util.http_header_close;
    htp.p('<data>');
    end;
    procedure WriteFooter is
    begin
    htp.p('</data>');
    end;
    procedure WriteEvent(pName IN Varchar2,
    pHireDate IN Date,
    pPhone IN Varchar2) is
    begin
    htp.p('<event');
    htp.p('start="' || to_char(pHireDate, 'Mon DD YYYY') || ' 00:00:00 GMT"');
    htp.p('title="' || pName || '">');
    htp.p('Phone: ' || pPhone);
    htp.p('</event>');
    end;
    procedure AllEmps is
    begin
    WriteHeader;
    for rec in (select Trim(first_name || ' ' || last_name) name, hire_date, Phone_Number
    from employees)
    loop
    WriteEvent(rec.Name, rec.hire_date, rec.phone_number);
    end loop;
    WriteFooter;
    end;
    end TLTest;
    I hope i have made it clear. Any tips.
    thanks in advance
    Pavan

  • Can we get multiple graphs dynamically in oracle apex?

    Can we get multiple graphs dynamically in a page in oracle apex?

    Vaishalini wrote:
    Thank You riedelme and Howard.
    Below is the example, I need to dynamically displays graphs with content (somewhat) dynamically selected for client from the select list.
    Example :-
    Lets say client A contains 5 contracts as A1, A2, A3, A4, A5.
    And Client B contains 3 contracts as B1 ,B2, B3.
    created a graph for contracts on sum(unique_submissions) and sum(total_submissions).
    Requirement is :-
    When I select Client A , then the page should show 5 individual graphs based on client A contracts in same page(as client A has 5 contracts).
    Similarly when select client B , the same page should show 3 graphs (as client B has 3 contracts).
    Please let me know if you understood the example, what I was trying to explain to you (I hope)and let me know if you need further more information.
    Thanks.It sounds like you need to use Howard's idea of conditional region display. When you select client A display client A graphs, and when you select client B display those graphs. Read about conditional region display in the documentation and post back here if you have more questions

  • APEX 402 and AnyChart graphing

    hi,
    I am new to APEX 402, about 3 days, and have been playing around a bit and need some help.
    I have a screen with 3 lists, e.g L1, L2 and L3.
    I want to design a screen that when the user selects an entry from each list it then creates a graph. The graph is no major problem.
    My problem is that if the user selects a differnt value from the lists I need to redraw the graph.
    I have played about with hide/show functionality but that is not redrawing graph and also a button to display the graph but that didnt work out.
    Anybody help with this issue
    Thx,
    Michael.

    Got this sorted.

  • Excessive whitespace apex svg cluster bar graph

    Hi,
    I've created a cluster bar graph which works fine except that it only fills half the space in the region, the rest is whitespace. If I expand the chart width the region increases size and the proportion of display to whitespace is still the same, about 50%. I'm pretty inexperienced with HTML, so don't be afraid of oversimplifying.
    Any ideas on what to do?
    Cheers

    Try the APEX forum here: Oracle Application Express (APEX)

  • Can APEX do the boxplot graph?

    I've been asked to create a box plot graph (sample at http://picasaweb.google.com/ittichai1/Public/photo#5177587049749069714) in APEX. This type needs to display 5 values (Lower, Upper, Min, Max and Median). Looking around in v3.1, the flash chart type "candlestick" comes close. It can display 4 values (Open, Close, Min and Max). Is there any other chart in APEX can do all 5 values?
    The other option if available is that I can use the candlestick to display 4 values as mentioned and use the line chart for median. However, when choosing candlestick, it does not allow to add additional series.
    Thanks in advance.
    -ic

    Mike,
    Thanks for a reply. I've looked at the anychart.com before. It doesn't have the boxplot I'm looking for. But anyhow it surely does have lot of nice graphs!!!
    I believe APEX 3.1 does provide the candlestick chart. It is under Flash chart. Unfortunately, the candlestick is primarily for plotting stock data. What I'm looking for is having additional value (MEDIAN data) into the same graph where four primary data is. Or if there was an option of plotting a line chart on the candlestick chart, I think that would work too.
    Thanks again.

  • Apex Graph Avg calulation giving problem

    Greetings !
    Apex version 4.1, DB 11g
    I created graph on 1 region and sales chart of the same graph in second region On graph and use apex graph attributes like minimum value, maximum value, avg.
    it shows ok d
    But i checked that on graph avg is worng e.g 900/15 is 60 but it is showimg 56.25 because it is dividing by 16 not 15. this was happen on all the pages
    On all pages avg is caluculated by dividing of increment on 1 number
    why it is happening
    Edited by: Omzz on Aug 28, 2012 4:06 AM

    Omzz wrote:
    Its working fine thanks !
    but now the conculsion is we found bug in apex in selecting by default chkbox of button Avg, its drwabck with the application is that you have to create the region with a complete query e.g
    .. it means ur page become too heavy by creating sub region with same query for calculating avg.
    Sven. is that another to calcualte avg without been typing so long queryLike I just mentioned. This is only a (not so nice) workaround for the bug that you encountered. There might be other workarounds, but I can't currently think of any that will be easy or as close to your result as you want.
    <ul>
    <li>Add an average column (analytic functions) or a total line (grouping sets) to the report, ignore this on the chart select</li>
    <li>use some javascript dynamic action to change the reported average value and replace it with your own corrected version</li>
    </ul>

  • APEX ViewTable for Graph

    Structure table (it's graph):
    POINT_A(INTEGER) | POINT_B(INTEGER) | PRICE_FROM_A_TO_B(INTEGER)
    Example date:
    1 2 3
    1 3 2
    2 3 4
    I want display and update this in ViewTable:
    |1|2|3|...
    1|0|3|2|...
    2|0|0|4|...
    3|0|0|0|...
    How can I do? thanks!

    Srinivas,
    there's no need to shout about making it 'IMMEDIATE..'.
    I doubt anyone is paid to answer all questions on this forum.
    Anyhow I'm not an html expert and assuming you're using the one page tabs template, I'm reasonably certain it has to do with the "class="tablight" in the body part of the template
    <div id="t20Tabs" class="tablight">#TAB_CELLS#</div>.
    Without wanting to change the Oracle supplied classes, I guess you can copy that css file, make the necessary changes and reference that new file in your header instead of the original.

  • Rtf Templates created with BI Publisher 11.1.1.3.0 not working in APEX

    I created templates using BI Publisher v10 Desktop that I used to create Report Layouts in APEX and everything worked just fine. However, I've upgraded to BIP 11.1.1.3.0 Desktop and the rtf templates don't work. I suspect that the problem is with the graphs.
    Is there something in my APEX environment that needs to be upgraded or modified to be compatible with the BIP v11 templates? Are templates created with BIP v11 compatible with APEX Reporting?

    I'm having a similar issue with 11.1.1.3.0
    My RTF templated uploaded to APEX correctly, and seems to load and generate ok. The OUTSIDE formatting on the report (title, etc) all seem to show fine, but the actual repeating data block doesn't show any of the data or columns or boxes..... Just the column headers.
    VERY FRUSTRATING......

  • How to create APEX report from data in PLSQL table

    Hi, I have a procedure that is creating/inserting records into multidimensional pslql table. I want to create a report and graph based on the data stored in plsql table. Can someone please advice how to can I select this data in apex OR point me to any sample code?
    Thanks
    Aali

    Hi,
    try to google something about ORACLE TABLE CAST
    SELECT ot.yourcolumn
    FROM
       TABLE(CAST(yourplsqltablevariable AS userdefinedoracletype)) otE.g.
    http://it.toolbox.com/blogs/oracle-guide/using-a-plsql-table-in-sql-11013
    Regards,
    R.

  • Oracle APEX versus Adobe Flex on AIR

    Hi
    I need advantages and disadvantages Oracle APEX versus Adobe Flex on AIR. I don't know Adobe and need your help. (we fight about our potential customer).
    Project:
    40 users insert own actvities into database. Supervisor analyse this info (reports, charts). Users connect to app via mobile phone EDGE using laptop.
    Regards

    Hello again,
    From the end-user perspective, FLEX applicatoins are more graphic in nature, in that they are truly graphic. APEX (at least through 3.2) generates a standard HTML type of web page. You can do graphics type of code, but Flex creates applications that will only run with Adobe tools. Flex generates an HTML page, but it calls a .swf file and plays that.
    Unless it is critical that you have that fully graphic interface (a .swf file type of image that plays), standard HTML is much better. You can still generate graphs, charts and such; incorporate images in your page and all the things that standard web pages have.
    With APEX, your users will see a standard HTML web-page type of interface, which most users today know how to use and expect.
    Thanks,
    Don.
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone! :)

Maybe you are looking for