Is it possible to have a combination graph chart with a stacked vertical br

I have the following XML data :
- <ROWSET>
- <ROW>
<Z_CUSTOMER>ACME</Z_CUSTOMER>
<Z_REGION>SPAIN</Z_REGION>
<Z_YEAR>2009</Z_YEAR>
<Z_MONTH>01</Z_MONTH>
<Z_SALES>100</Z_SALES>
<Z_SALES_PREV>50</Z_SALES_PREV>
<Z_SALES_PREV2>90</Z_SALES_PREV2>
</ROW>
- <ROW>
<Z_CUSTOMER>ACME</Z_CUSTOMER>
<Z_REGION>SPAIN</Z_REGION>
<Z_YEAR>2009</Z_YEAR>
<Z_MONTH>02</Z_MONTH>
<Z_SALES>300</Z_SALES>
<Z_SALES_PREV>50</Z_SALES_PREV>
<Z_SALES_PREV2>40</Z_SALES_PREV2>
</ROW>
- <ROW>
<Z_CUSTOMER>ACME</Z_CUSTOMER>
<Z_REGION>SPAIN</Z_REGION>
<Z_YEAR>2009</Z_YEAR>
<Z_MONTH>03</Z_MONTH>
<Z_SALES>600</Z_SALES>
<Z_SALES_PREV>35</Z_SALES_PREV>
<Z_SALES_PREV2>80</Z_SALES_PREV2>
</ROW>
- <ROW>
<Z_CUSTOMER>ACME</Z_CUSTOMER>
<Z_REGION>SPAIN</Z_REGION>
<Z_YEAR>2009</Z_YEAR>
<Z_MONTH>04</Z_MONTH>
<Z_SALES>700</Z_SALES>
<Z_SALES_PREV>350</Z_SALES_PREV>
<Z_SALES_PREV2>90</Z_SALES_PREV2>
</ROW>
- <ROW>
<Z_CUSTOMER>ACME</Z_CUSTOMER>
<Z_REGION>FRANCE</Z_REGION>
<Z_YEAR>2009</Z_YEAR>
<Z_MONTH>01</Z_MONTH>
<Z_SALES>100</Z_SALES>
<Z_SALES_PREV>60</Z_SALES_PREV>
<Z_SALES_PREV2>70</Z_SALES_PREV2>
</ROW>
</ROWSET>
I have produced a report based on this data which uses a combination graph chart. The sales for the current year are shown as a vertical bar for each month while the previous year and previous year but one are shown as lines. The report produces the correct output but I would like to add an extra feature
so that the vertical bar for the current year is shown as a stacked vertical bar so that the sales from each region can be seen within the bar rather than the bar just showing total sales. Is this possible byt altering the chart options within the template builder or would it be necessary to write some XSL code to do this ?

Yes and no, here's an example of stacked bar and area graph.
chart:
<Graph stylePath="/oracle/dss/graph/styles/projection.xml" seriesEffect="SE_AUTO_GRADIENT" graphType="LINE_VERT_STACK">
  <LegendArea visible="true" fillColor="#FFFFFF" fillTransparent="false" borderColor="#000000" borderTransparent="false" automaticPlacement="AP_NEVER" position="LAP_RIGHT"/>
  <Title text="Margin Forecast Trending" visible="true" horizontalAlignment="CENTER">
    <GraphFont name="Arial Black" size="16" bold="true" italic="false" underline="false"/>
  </Title>
  <SeriesItems>
    <Series id="0" color="#FFFF00" lineStyle="LS_SOLID"/>
    <Series id="1" color="#0000FF" lineStyle="LS_DASH"/>
    <Series id="2" color="#FF0000" lineStyle="LS_DOTTED"/>
    <Series id="3" color="#00FF00" lineStyle="LS_DASH_DOT"/>
  </SeriesItems>
  <Y1Axis lineWidth="1" lineColor="#DDDDDD" ascending="true" axisLocation="AL_LEFT" visible="true" axisMinAutoScaled="true" axisMaxAutoScaled="true" majorTickStepAutomatic="true">
    <ViewFormat numberType="NUMTYPE_GENERAL" numberTypeUsed="true" decimalDigit="0" decimalSeparatorUsed="true" decimalDigitUsed="true" scaleFactor="SCALEFACTOR_NONE" scaleFactorUsed ="false"/>
  </Y1Axis>
  <LegendText>
    <GraphFont name="Arial Black" size="12" bold="false" italic="false" underline="false"/>
  </LegendText>
  <O1Title text="Forecast as of" visible="true">
    <GraphFont name="Arial Black" size="11" bold="true" italic="false" underline="false"/>
  </O1Title>
  <Y1Title text="Dollars" visible="true">
    <GraphFont name="Arial Black" size="11" bold="true" italic="false" underline="false"/>
  </Y1Title>
  <Y1TickLabel>
    <GraphFont name="Arial Black" size="9" bold="false" italic="false" underline="false"/>
  </Y1TickLabel>
  <O1TickLabel>
    <GraphFont name="Arial Black" size="9" bold="false" italic="false" underline="false"/>
  </O1TickLabel>
  <LocalGridData colCount="{count(xdoxslt:group(.//G_GRAPH|.//G_ZERO_GRAPH[count(//G_GRAPH)=1],  'PFP_DATE'))}" rowCount="4">
    <RowLabels>
      <Label>Margin Plan</Label>
      <Label>Base Fee</Label>
      <Label>Forecast at Completion</Label>
      <Label>Margin Forecast</Label>
    </RowLabels>
    <ColLabels>
      <xsl:for-each select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
        <Label>
          <xsl:value-of select="PFP_DATE"/>
        </Label>
      </xsl:for-each>
    </ColLabels>
    <DataValues>
      <RowData>
        <xsl:for-each-group select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" group-by="PFP_DATE" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
          <Cell>
            <xsl:value-of select="sum(current-group()/MARGIN_PLAN)"/>
          </Cell>
        </xsl:for-each-group>
      </RowData>
      <RowData>
        <xsl:for-each-group select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" group-by="PFP_DATE" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
          <Cell>
            <xsl:value-of select="sum(current-group()/BASE_FEE)"/>
          </Cell>
        </xsl:for-each-group>
      </RowData>
      <RowData>
        <xsl:for-each-group select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" group-by="PFP_DATE" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
          <Cell>
            <xsl:value-of select="sum(current-group()/FORECAST_AT_COMPLETION)"/>
          </Cell>
        </xsl:for-each-group>
      </RowData>
      <RowData>
        <xsl:for-each-group select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" group-by="PFP_DATE" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
          <Cell>
            <xsl:value-of select="sum(current-group()/MARGIN_FORECAST)"/>
          </Cell>
        </xsl:for-each-group>
      </RowData>
    </DataValues>
  </LocalGridData>
</Graph>

Similar Messages

  • Is it possible to have smaller icons under ios7 with iPhone 4S?

    Is it possible to have smaller icons under ios7 with iPhone 4S?

    I have an iPAD and my wife has an iPAD mini.  The new size of the icons is very bad.  What would be nice would be to have a variable under Settings where the user could select.  Like small, medium and large.  The same amount of space could be allocated per icon, so you would not have to squeeze more icons on a page.  It would just allow for some personalization of the pages.

  • Is it possible to have multiple different texts conversations with the same two people?

    In iOS 8.1.3 is it possible to have multiple different text conversations with the same person? I'm looking for a way to set an old conversation aside to talk about something new.
    Is this possible?

    speculation is agaisnt the ToS here, but you never know (I was shocked when we got 8 track recording in GB2)
    best thing to do is to send Apple some Feedback and let them know what features you want (they really do read what's sent):
    http://www.bulletsandbones.com/GB/GBFAQ.html#sendfeedback
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Is it possible to have CFTREE auto expand? (with binding)

    Hi there,
    ColdFusion newbie here so please bear with me.
    I'm doing some tutorials on CFTREE right now, so far it works
    well as is, but I have a question:
    Is it possible to have the whole tree expanded automatically
    when the user first open the page? I know there is the "expand"
    attribute for the "cftreeitem" element, but it is not allowed when
    using dynamic data bindings.
    I know I could probably do the manual looping of queries to
    achieve this, but it would be nicer if we could use the binding
    mechnism and still have ColdFusion automatically go through
    different levels.
    The data I intend to use the CFTREE on is of quite managable
    amount, so I don't think performance would be a big problem here.
    Any tips or hints will be appreciated, and many thanks in
    advance!
    Billy

    I've never used it but it seems that there is an attribute
    called expand in the cftree items- I imagine the tag is something
    like
    <cftree>
    <cftreeitem value = "Travel Assistant" display = "Travel
    Assistant" parent = "Emp_ID" queryAsRoot = "No" expand = "yes">
    </cftree>
    good luck

  • Is it possible to create an interactive graph/chart using Report Builder 3.0?

    Hi All,
    I am using Report Builder for the first time. Here is what I am trying to accomplish. The data I plan to use in Report Builder is coming from SQL Server and in the Report Builder I want to create an interactive graph(chart).
    For example, The table in SQL Server consists of Hospital Name, Measure name, and Scores for each measures for different quarters.
    The idea is to create a graph that will allow the user to pick the measure name(from a drop down list or something similar) and Hospital name, then the graph will display the measure scores for different quarters and corresponding target scores for that
    particular Hospital.
     The data in SQL server looks like this :
    measure
    MC_NM
         q112
        q212
       q312
    XXY
    TARGET
    0.9
    0.9
    0.9
    XXY
    REGION
    0.832879
    0.848934
    0.865714
    XXY
    Hospital 1
    0.875
    0.916084
    0.92
    XXY
    Hospital 2
    0.833333
    0.876923
    0.905797
    ZZZ
    TARGET
    0.979167
    0.952381
    0.955556
    ZZZ
    REGION
    0.942029
    0.945205
    0.983871
    ZZZ
    Hospital 1
    0.22
    0.270833
    0.372549
    ZZZ
    Hospital 2
    0.990291
    0.989583
    0.98913
    YYY
    TARGET
    0.928934
    0.9
    0.891429
    YYY
    REGION
    0.590909
    0.655172
    0.703704
    YYY
    Hospital 1
    1
    1
    1
    YYY
    Hospital 2
    0.788462
    0.82
    0.836735
    Is this is possible to do in Report Builder 3.0? Please share your thoughts.

    Thanks a lot for your response.
    I was able to create the parameters and now able to select the measure and facility and display that data in the table and chart.
    Now I am trying to see if I can add a line(target values) on top of the column chart to show the whether the scores of each measures, for each quarters are how far from the target values.
    Please let me know if this is possible.

  • Combining 100 pngs with transparent background, vertically into one image PSE9

    As the question suggests,
    In PSE9 is it possible to combine 100+ PNG files (with identical dimensions & transparent background) into a single PNG file where the images are stacked vertically? and without trimming/cropping the transparent part of the image! I want to retain the exact original image dimensions so that they all stack neatly and precisely. 
    So far what I've tried is opening up the 100 PNG files in PSE9, create a new document with transparent background using the same width as the individual files and the height set to the individual file height multiplied by 100. (i.e. original image is 36 x 120 so the new file will be 36 x 12000) Then I get stuck! Whenever I drag a single file into the newly created document, it seems to be cropped to the image edges and no longer retains it's original height and width. Not to mention that hand dragging 100 files seems like a long-winded way of doing things... My automate button seems to be greyed out (so no contact sheet?) and I can't find any other automated process.
    Any help would be greatly appreciated,
    Thanks
    N.
    PSE 9 on Win 7

    Please compare the resoultion of the two documents too. And a better way of arranging the layers would be to use distribute option in the move tool. You can find more about the move tool at http://helpx.adobe.com/photoshop-elements/using/moving-copying-selections.html#main-pars_h eading_0
    Thus your workflow would be:
    Create a new document with the required dimension.
    Use File>Place to place all your png files on the created document as layers
    Use distribute option in move tool
    A still better workflow would be to use put all the files in a folder and write an ExtendScript to read the files and place them as layers on the document of said dimension

  • SVG Multi Graph/Chart with line and bar

    I have a request for a "Multi-Graph-Chart"
    showing both - line chart and
    - bar-chart with respective data.
    Can you provide for the sourcecode, which is behind the SVG chart wizard enabling us to develop an own/individual SVG chart ?
    pls kindly advise.
    Bernhard
    nb. I mailed u this request already - but thought this might be of interest to others as well.

    Marc
    I would support this addition to functionality. I currently have a client who has a requirement for complex charting in HTMLDB, and I am looking at the SVG packages in HTMLDB, ie: WWV_FLOW_SVG, but as you say they are not independent APIs and rely heaviliy on the application's metadata. This is a shame as I could quite easily handle a nice PL/SQL API that would let me create custom SVG, instead of generating the SVG manually and embedding that in the page.
    Cheers
    Ben

  • Is it possible to have a dual screen setup with an iMac (2012) and an iMac (mid 2007)?

    Hello Everyone,
    I have two iMacs. One is a 2012 model and the other is a mid 2007 model. Would I be able to use the mid 2007 model as an extra monitor?
    I was going to purchase a mini dvi to mini display port cable and see what happens but I think it would be a good idea to see what everyone else thinks. Thanks for any suggestions!
    - Nolan

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    I am thinking that won't work. The older iMac's video port only goes on direction - out. It won't take the signal from the newer iMac. You might be able to do something with this software;
    http://www.screenrecycler.com/ScreenRecycler.html

  • Possible to have large text in 4k with Mac pro?

    Hello, I have a need to view details with my photo editing tasks, so I'm considering a 4k monitor at the moment. However, I've been told that if I actually run the resolution at 4k, the rest of the OS will be extremely small text.
    Is there a way to have large text in the OS, but able to view all the details of my photo in 4k with a 2014 Mac Pro?

    from the article linked by kaz-k:
    --New 4K display settings in OS X 10.9.3. | Source: KhaosT via Twitter

  • Possible to Have Lync 2013 MSP Installer With Credentials?

    So I am working on a silent lync installer to push out to all my clients, using a custom .MSP file. I am wondering is it possible to include their logged in credentials to the installer? So when they first open Lync after the install, it just logs right
    in, without needing to change the Sign-in Address.
    Currently it defaults to "[email protected]"

    Hi,
    Base on my Knowledge, it is impossible to achieve it with the .MSP file.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Is it possible to have the result from webservices with oracle8i

    hi,
    i call webservices MS .net with package utl_http under oracle 8i.
    exemple:
    DECLARE
    x utl_http.html_pieces;
    msg varchar2(12);
    BEGIN
    x := utl_http.request_pieces('http://localhost/ServiceNotification/Notification.asmx/NotifT?messagetmp=' || msg);
    END;
    I don't know how to have a result from a webservices!
    thanks for helping me.

    While the following paper is Oracle9i DB specific, conceptually, what is done should work with Oracle8i.
    Bear in mind that the use of XMLType is specific to Oracle9i DB R2 so if you were to follow the example, you would have to use varchars and probably acept the result into the PL/SQL XML Parser. See:
    http://otn.oracle.com/tech/webservices/htdocs/samples/dbwebservice/DBWebServices.html
    Mike.

  • Is it possible to have a dual boot system with Windows that can ALSO be booted into a virtual machine optionally?

    I have been looking for a solution to this for some time now.  I want the convenience of a virtual Windows environment that can run simultaneously with OS X Lion--something I have right now using Virtualbox.  But at the same time, there are graphics and processor-intensive Windows applications (for me, games and engineering applications) that don't run well at all in a virtual machine.  So, here is what I am looking for:
    A dual boot (i.e. bootcamp) system running Windows 7 and OS X Lion in which the Windows 7 machine can EITHER be booted as a virtual machine while running OS X OR booted physically so as to utitlize all system resources.  The real trick however, is that I I want the virtual machine and the physical machine to be the exact same system.  Meaning, if I boot physically into Windows and change something... rename a file, run a program and create a file, etc...  those changes will all appear in the virtual machine.
    Now, what are my options?  I have read about Virtualbox and VMWare Fusion's "Raw Disk access" function but I can't tell if that's what I'm looking for or not...  I half-thought that they were talking about converting a physical OS into a virtual machine, but without the intention of booting the physical OS again...
    Also, I'm open to any software, free or otherwise.  Thanks!

    both VMWare Fusion & Parallels Desktop for Mac can use a bootcamp Windows installation as VM exactly like you want.

  • Is it Possible to have two different VOIP providers with Airport Extreme?

    I am moving to new location and want to discontinue my POTS phone line. I will have Time Warner VOIP cable modem for one telephone line and would like to add my old Vonage VOIP telephone appliance so I can keep that old number. I currently have cable modem to Vonage appliance to telephone and Vonage appliance to Airport Extreme base station. TWC tells me I have to connect the Vonage device to AEB. Vonage tells me I have to connect the Vonage device to a TWC modem router. TWC says they don't have a modem router.
    I also connect two TiVos wirelessly through the AEB. Any advice on how I can proceed?
    Thanks.

    I run the Time Warner VOIP off the Time Warner modem and the Vonage VOIP unit off my Airport Extreme Base Station which is, of course, downline from the Time Warner modem. No problems at all.

  • Is it possible to have my Google calendar sync with my droid but not sync my Google email??

    I love having my google calendar sync with my phone.  However, it is pulling down my email as well with more information than I would like stored in my droid.

    Thanks for your help!  I have been fooling with this and at some point must have turned the "sync" off for email.  Glad you gave me the path to get there and see that it was actually turned off. 

  • Is it possible to have 3 screens via thunderbolt

    is it possible to have 3 screens via thunderbolt with the new monitor from apple

    Hi N,
    If you don't get an answer here, that would be a great question for the Apple Store. They should be able to answer that in a snap, given that they sell all of the products you're asking about.

Maybe you are looking for

  • How to solve problem itunes was not property installed. If you wish to import or burn CDs you need to reinstall Itunes

    Microsoft Windows 7 Ultimate Edition Service Pack 1 (Build 7601) Gigabyte Technology Co., Ltd. G31M-ES2L iTunes 11.1.0.126 QuickTime 7.7.4 FairPlay 2.5.16 Apple Application Support 2.3.6 iPod Updater Library 11.1f5 CD Driver Not Available CD Driver D

  • Organizations - out of the box error

    Dear All, I received the following error: "System error was encountered. Contact Oracle Identity Manager system administrator" from Administrative console (when click on Organizations->create or Organizations->manage This is Out of the box oim 9.1.0.

  • USERID/PASSWORD SQLPLUS

    I am new to Oracle and I am trying to launch the SQLPLUS GUI and I don't know what the USERID / PASSWORD would be. Any help. Thanks

  • List of "about:config" commands

    I want to be able to really fine tune/customize firefox, but many of the changes I want to make are only available thru "about:config". An example of such a change -- how to force new tabs to open blank -- took quite a bit of searching and knowing wh

  • IFrame enabled cameras - Please help!!!

    Hello! I've been shooting home video with a miniDV camera but editing is often slowed by the real time importing process. I'm wondering if an iFrame capable camera like the GC-WP10 (water proof jvc model) is used by anybody here. I'm editing home vid