Need a few hints for graph component Stacked bar

Hi to all,
JDeveloper11gR2
i need a little step by step tutorial to create a stacked bar graph component to answer the following questions.
which data table structure i need?
which data structure i need? horizontal (columns stacking) or vertical (rows stacking)
Will i need the hierarchical graph option in the creation wizard?
I think the documentation unattended a litte bit the useful stacked graph component.
Thank you very much.
Best regards
Gunnar
Edited by: gkieck on Dec 14, 2012 12:06 AM

...

Similar Messages

  • How to create a hint for a component(awt),thanks

    How to create a hint for a component(awt),the component of awt has not the property.

    If you are talking about a tooltip, this is going to be hard.
    You are probably going to have to use a mouseMotionListener to get the event that the mouse is over the component and then a Timer to fire the showTooltip event if the mouse hasn't moved in some amount of time.

  • Howto create a graph "Floating Stacked Bar"

    Hi everybody!
    My requirement is to implement a graph like this:
    https://dl.dropboxusercontent.com/u/18609389/ScreenShot350.jpg
    It seems to be a "Floating Stacked Bar", but I'm not able to find any tutorial or reference to do that.
    For each year, I have to draw a red bar towards the upside with a positive value, and a blue bar towards the downside with the negative value.
    I know how to to get the data, but down know exactly how to compose the VO query that the graph is expecting.
    Thanks in advance!
    Jose.

    Hi Frank,
    Yes I've done it already, but my problem seems to be with the data.
    I'm trying something like this to simulate the case of the screenshot above. This is the data returned by my VO:
    Year  Realized(Red) Unrealized (Blue)
    2013       900            -200
    2014       600            -300
    This is the configuration of the binding:
    https://dl.dropboxusercontent.com/u/18609389/ScreenShot351.jpg
    But only is displayed this:
    https://dl.dropboxusercontent.com/u/18609389/ScreenShot352.jpg
    Don't understand what am I doing wrong and there aren't any examples in the doc about this graph.
    Thanks,
    Jose.

  • Need to use Hint for Select Query  11g

    Hi,
    I have a select query which is fetching data from multiple table.
    I just need 10 or less rows, already I m using rownum <=10
    Could you tell which is the better choice for using HINT.
    /*+ FIRST_ROWS(10) */      (or)    /*+ all_rows */
    Thanks.

    On Oracle 11.2.0.3 and 11.1.0.7 on my test table with an ORDER BY in the query, I found FIRST_ROWS using the index to get sorted rows and ALL_ROWS retrieving 10 rows from a full scan and then sorting them.
    On Oracle  I didn't find any difference in plan on a different, physically smaller, table.
    For the ALL_ROWS version the optimiser already knows that there will only be 10 rows returned.
    The performance difference: As usual, only use FIRST_ROWS if you actually intend to fetch less than the full data set. If you intend to fetch all 10 rows, use ALL_ROWS, which should be the default (taken from the optimizer_mode system parameter).

  • I need a few networking APIs! any help appreciated

    Hi people!
    I need a few APIs for a networking project, namely an API that does some kind of port scanning similar to the one found in NMAP, and another one that does packet sniffing, similar to that found in CPAC. Anyone knows where can I find any libraries that do anything like that? any help would be greatly appreciated.

    I have looked in a few open source sites like sourceforge.net or www.opensource.org but I can't find anything... I also looked it up using google and I found a few CPAC libraries, but they're all for C, none for Java. I was wondering if anyone knew where I could look...

  • Stacked Bar Chart - Hiding legends with 0 values

    I'm using Crystal Reports 2008, building a report that will eventaully be called from an ASP.NET page.
    I've built a stacked bar chart that is displaying values per month of the number of various vehicle types.  The X values are the months, the Y values are the number of each vehicle type and the stacked series are each different vehicle type.  However, depending on the months that the user asks for, there may be some vehicle types that do not have any data, thus the number is 0.  Is there a way for the report to see that there is 0 data for this vehicle type and thus not include it in the legend of the various vehicle types?
    First time poster, so hopefully I explained everything well enough.  I searched the forums for anything matching Stacked Bar Chart and did not find anything.  I don't know how to find/query SAPNotes.
    Thanks.

    Thanks for the response, but I'm not familar with Alters?  Could you describe a bit more?  I didn't see anything in the documentation about it.

  • Horizontal stacked bar chart supported?

    Hi,
    we have the requirement for a horizontal stacked bar chart. Is this supported in 12.x?
    Just to make shure bevore extending our own Chart Applets.
    Thanks,
    Matthias

    Matthias,
    There are only "Horizontal Bar" and "Horizontal Group Bar" options if you want a horizontal bar chart. The "Stacked Bar" is vertical.
    Regards,
    Kevin

  • Line stacked bar graph without seperate measure for stacks

    Hi All,
    I want to create a line stacked bar combo graph in analytics but i do not want to create seperate column for each stack as the normal convention is since we want to show revenue based on region which keep adding up.
    Can anyone guide about what pcxml to use for this.
    I tried by modifyng the charts/linecolumn.cxml but it shows line also stacked which is not our requirement. There should be a single line only for this.
    Can anyone please guid me for this?

    The graph wizard in Reports 9i allows you to create a dual Y combination graph - is this not sufficient for your needs, or am I missing something?
    Danny

  • TabularData for DVT Stack bar Graph

    Dear All,
    I used tabulardata to supply value fro my stack bar graph component and I used the code below
    public class Stackbar
      public List getTabularData()
        ArrayList list = new ArrayList();
        String[] rowLabels = new String[]
          { "Dry Goods", "Wet Goods", "Misc Goods" };
        String[] colLabels = new String[]
          { "May 2009", "June 2009", "July 2009" };
        Double[][] values = new Double[][]
            { 50000d, 122000d, 175000d },
            { 90000d, 110000d, 150000d },
            { 65000d, 50000d, 95000d }};
        for (int c = 0; c < colLabels.length; c++)
          for (int r = 0; r < rowLabels.length; r++)
            list.add(new Object[]
                { colLabels[c], rowLabels[r], new Double(values[r][c]) });
        return list;
    }JSF is simple
    <dvt:barGraph id="barGraph1" subType="BAR_VERT_STACK2Y" shortDesc="Sample bar"
                              tabularData="#{viewScope.stackBarBean.tabularData}">
                  <dvt:background>
                    <dvt:specialEffects/>
                  </dvt:background>
                  <dvt:graphPlotArea/>
                  <dvt:seriesSet>
                    <dvt:series/>
                  </dvt:seriesSet>
                  <dvt:o1Axis/>
                  <dvt:y1Axis/>
                  <dvt:y2Axis/>
                  <dvt:legendArea automaticPlacement="AP_NEVER"/>
                </dvt:barGraph>But I am not able to have a stack bar graph and the data isnt stacking..
    Kindly see the image here http://imageshack.us/photo/my-images/831/stackbar.jpg/
    My playground code can be downloaded here...
    http://code.google.com/p/my-dev-projects/downloads/detail?name=PlayGround.zip&can=2&q=
    How do I formulate the tabular data values correctly so that I could achive the correct stack bar graph component
    Thanks.
    JDEV 11.1.1.6

    Well...found the solution myself...
    Kindly disregard please..thanks

  • Need a hint for home office / 871 does not support port-security - FPM ?

    Hi,
    i want to realize the following setup:
    - Central Site 871 with Internet Connection and static IP
    - Home office 871 with Internet Connection and static IP. On that home office router, there should be 2 Vlans: 1 for the office work and one for the user's private PC. All Traffic from the "office" Vlan is being put into a VPN to the central site. All Traffic on the other interface is being natted and goes straight to the internet.
    To minimize security issues, i tried to configure port-security, so that the user cannot connect with his private PC to the office LAN ports and vice versa. Unfortunately, port-security seems not to be supported on the 871 (advanced ip services image).
    Now i looked for an alternative...and came over to FPM (flexible packet matching).
    If i understood right, you can classify packets for example by their source MAC address and if this field matches a specific value (the mac of the work pc), packets can be dropped by a policy.
    Of course i cannot avoid that the user connects the work pc together with his private pc (this is then related to the OS Security to keep out viruses, worms, trojans, etc). But i could/want to restrict the internet access with the work pc through "normal" Internet access - the users should not be able to do that (must use the company's proxy).
    I did the follwing config:
    class-map type access-control match-any c2
    match start l2-start offset 48 size 6 regex "0xabcd1234fedc"
    match field ETHER source-mac regex "abcd1234fedc"
    policy-map type access-control p2
    class c2
    drop
    interface Vlan1
    ip address 192.168.20.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly
    service-policy type access-control input p2
    service-policy type access-control output p2
    As this feature is quite new, i'm not familiar with it's syntax.
    I also tried to use "string" instead of regexp, but i'm still able to connect the office pc to the private Lan and i am able to access the "Internet" (currently it's only setup in a lab).
    As i understood so far, the offset is the value in bits, and size is in bytes. is that correct?
    Has anyone yet some experience with FPM or maybe any hint for me how to realize the requested setup with the 871 routers?
    bets regards,
    Andy

    For the FPM feature to work you will need PHDF files for the protocols you want to scan for to be loaded on your routers. The files can be downloaded from cisco's website. In your case you will have to download ether.phdf file.

  • I need a stacked bar graph stacked but overlaying data help please

    Hi,
    I have a requirement to change an existing combination graph.
    Currently we use a combination graph that has a bar that shows the usage accross a number of weeks, with a line that shows total available over the top. So the customer can see what they have used in a week against themaximun it could be used in that week.
    Unfortunatley our customer would like this changes to a single bar graph that shows the usage and then if the total available is more than the usage (it is sometimes the same but never less) then this should be added to the bar graph to increase the bar in a different colour.
    I have looked at Reports 10g and the stacked bar graph seems perfect but this adds the two values together and not just the increase. I know i could minus one from the other but with the way my data is structured in the data model this could be a pain as they are linked via a data link in the data model and also seems a bit of a work around. Is there no way to have a overlay on the stacked graph or is there another way to achieve this that i cant see.
    Thanks

    I was able to figure it out.
    Instead of using creating the dataset using:
    CategoryDataset datasetWorkload = DatasetUtilities.createCategoryDataset()
    if a 'DefaultCategoryDataset' is used, the values to be displayed can be customised:
    DefaultCategoryDataset result = new DefaultCategoryDataset();
    result.addValue(200.0, "Allocated", "Jan 04");
    result.addValue(500.0, "Allocated", "Feb 04");
    result.addValue(10.3, "Over-Allocated", "Jan 04");
    result.addValue(16.2, "Over-Allocated", "Feb 04");
    Thanks for your time, users: wpafbuser1 and practissum.

  • How to Put Legend for Multi Series Stacked Graph...?

    Hi Experts,
    Please guide me how to put Legend for Multi Series Stacked Graph...?
    Its very URGENT...!!!!
    Thanks in advance...
    Regards,
    Manoj

    I searched the forum using "jcombobox multiple columns". The first posting I read had a link to a posting with 4 different solutions.
    Why is it so hard to search the forum before posting a question????

  • Need hints for Optimizing Photoshop CS4 on Leopard / Intel MacPro

    Just wondering if anyone had any hints for optimizing PS CS4 performance on Intel MacPro ( I have the 2.66 Dual-core Xeon) My MacPro has the upgrade ATI 1900 video card which I think is GL enabled. From what I have read CS4 now accesses the ATI 1900's GPU memory for increased performance. Is this correct? Does anything need to be configured or does CS4 automatically detect the ATI 1900 GPU?
    Any other configuration in CS4 that need to be set?
    Thanks.

    Open Photoshop's preferences (Command+K). Click on Performance at the left. The lower right portion of the settings will say if PS detected a compatible video card. If it did, the check box for "Enable OpenGL Drawing" will already be on.
    The features that OpenGL drawing adds to PS are listed here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb404898
    That may help you decide whether or not you want it on. Personally, I turned it off. One big reason for me is paths. I have to create a LOT of paths for client work. With OpenGL on, paths can be difficult to downright impossible to see as you draw them, depending on the color of the underlying pixels. With OpenGL off, PS uses the standard complementary contrasting colors. Much easier to use.

  • I am receiving excel files, which I need to convert with my macbook pro...I did this with export, but the file I got didnt show graphs as it should...can you help...do I need to buy excel for Apple computer, or is there any easier way of dealing with it..

    I am receiving excel files, which I need to convert with my macbook pro...I did this with export, but the file I got didnt show graphs as it should...can you help...do I need to buy excel for Apple computer, or is there any easier way of dealing with it..does App  "Numbers" help here?

    Numbers should be able to read Excel files without any problems.    If Numbers does not read the graphics properly then you can try Excel Online. https://office.live.com/start/Excel.aspx

  • I need the SPICE Model for DS1809 or the component in Multisim. Help mee!

    Hey people, I need the SPICE Model for DS1809 (Digital Potentiometer) for Multisim. Does anybody have this?? Or any idea where to get. I searched for, but I coudn't find.
    Thank you

    Hi,
    As you can see in this link the part is longer manufactured and it does not have a replacement.
    In terms of functionality, you can try using the component PLL_VIRTUAL in Multisim to replace it in a high level simulation or create a new component of a replacement that you have the SPICE model of.
    Let me know if you need any help.
    Mahmoud W
    National Instruments

Maybe you are looking for

  • Confirmation control (PO) Mandatory: exemption

    Hello, We have made the 'Confirmation control' mandatory in PO (create/change). But is it possible for few users able to process the PO without 'Confirmation control'. Actually these users, usually take the ConfContK out u2013 to raise the invoice. R

  • How do I print a form

    How do I print a form I have created?

  • Importar dvd a premiere elements 2.0

    hola...al importar un dvd a elements crea varios tramos de audio y video, al reproducirlos entre un tramo y otro hay negro y un pequeño salto de audio...existe algun plugin o forma para que no ocurra esto...seria de gran ayuda ub aporte..gracias

  • PSE9 Photo Downloader freezes

    I have PSE9 that I run on an I-mac quad core with 8mg of ram. Anytime I load a media card and try to use photo downloader the program frezzes when I try to change the location that I want to save the photo to. I've read a few forum threads that sugge

  • TS3297 I've downloaded a track but it won't play in iTunes...

    When the time code moves from 00.00 to 00.01 the track stops as if it has finished. Can anyone help?