How do you combine a stacked column chart with a clustered column chart

Hello,
I am trying to combine a stacked column chart with a clustered column chart. I know that in Excel there is a way to trick that described on the next site: http://people.stfx.ca/bliengme/ExcelTips/Columns.htm
Is that possible with BI Publisher?
Thank you very much!
Codruta Crisan

Finally I get it myself:
You need to use graph type as BAR_VERT_STACK2Y and the declare the series that you want to see on the first Y vertical bar as assignedToY2="false" and the ones that you wanr to see on the second Y vertical bar as assignedToY2="true".
In my case I use 4 Series, 2 stack on the first clustured column and 2 stacked on the second (2Y) clustured colum....see below
graphType="BAR_VERT_STACK2Y">
<SeriesItems>
<Series id="0" assignedToY2="false" color="#BBD6E7"/>
<Series id="1" assignedToY2="false"/>
<Series id="2" assignedToY2="true" color="#004A96"/>
<Series id="3" assignedToY2="true"/>
</SeriesItems>

Similar Messages

  • How do you combine pages from separate PDFs?

    How do you combine pages from separate PDF files into one document?

    I use Adobe Acrobat for this.

  • How do you combine 2 iPhoto picture albums?

    How do you combine 2 photo albums?
    Can you add pictures to a book once you've already started it?

    What i did to combine an ablum was to change the album information so it is exactly the same as the one you want to merge it with. i did this and it worked. it has to be exactly the same, word for word. to edit the album information, right-click on the album and click "get info". a Box will appear. click on the 2nd tab to edit info. you can even change the album cover!
    *note: this hasn't been tested for music downloaded from the iTunes Store.
    Hope This Helps!

  • How do you combine 3 different itunes libraries from 3 different computers to one computer?

    How do you combine 3 different itunes libraries from 3 different computers to 1 computer?
    Can you keep it from creating duplicates?  These libraries have some duplicates.
    How do you deal with duplicates? 
    I'm talking 50GB. 
    All computers are authorized. 
    THANKS for any suggestions.

    You can't.
    If accounts could be merged, then everybody could merge their accounts with everybody and there would be no need for anyone to buy anything.

  • How do you combine your photo librarys

    Hi how do you combine photo librarys after you have made more than one please and thank-you?

    Use the paid version of iPhoto library manager to merge them - or use Aperture
    LN

  • How do you combine two or more movie clips into one movie clip in iMovie '09

    how do you combine two or more movie clips into one movie clip in iMovie '09

    First create an iMovie project. Then drag the clips (or portions of clips) that you need into the project.
    When finished, use the SHARE menu to share the project.

  • How do you combine mutable iphoto libraries and clean up duplicates

    how do you combine multiple iphoto libraries and clean up duplicates

    If not the only answer is the paid version of iPhoto Library Manager -http://www.fatcatsoftware.com/iplm/ - and maybe duplicate annihaliator -http://www.macupdate.com/app/mac/18748/duplicate-annihilator
    You must have IPLM as stated - you may also need DA depending on how thing go with the merge
    LN

  • How can you combine apple gift cards online?

    How can you combine apple gift cards online?

    Hi Fsalicrup,
    You should be able to use up to eight Apple Store Gift Cards during checkout on the Apple Online Store.
    Payment & Pricing - Apple Store (U.S.): Apple Store Gift Card
    http://store.apple.com/us/help/payments#applecard
    Apple Store Gift Card
    You can redeem an Apple Store Gift Card at the online Apple Store, by calling 1-800-MY-APPLE, or at any Apple Store. Apple Store Gift Cards can be used only in the United States. With the exception of gift cards, certificates, and iTunes downloads, you can purchase just about anything sold by Apple, including products from both Apple and third-party makers.
    You can use up to eight Apple Store Gift Cards at the Apple Online Store or if placing an order over the phone at 1-800-MY-APPLE. You can combine your Apple Store Gift Card(s) with one credit card to pay for your purchase. Simply enter or provide the PIN. On the plastic gift cards, the PIN you need to use can be found on the back under the scratch off area. On the electronic Apple Store Gift Cards, the PIN can be found on the email below the image of the card. Please keep the card in your possession until the order has been processed and delivered.
    Note: Apple Store Gift Cards are different and distinct from iTunes Gift Cards.
    Cheers,
    - Brenden

  • How do you use an entity bea that uses an identity column?

    I am using an mssql database. I need to create an entity bean for a table that uses an identity column. I want to use the identity column as the Primary key in the entity bean.
    I assumed that I should not pass in a paramter for the identity column into the create method of the Home interface or the create method of the Bean ejbCreate method. But when I try using the entitity bean to create a new row in the table I get the following error.
    Cannot insert explicit value for identity column in table 'PropsTableIdentity when IDENTITY_INSERTis set to OFF.
    I didn't think I was doing anything to explicitly insert anything into the identity column.
    Anyways here are my programs if anybody cares to take a look.
    PropsIdentity.java
    package propsIdentity;
    // File generated by Desiderata Software's Blazix entity bean wizard
    // Thu May 05 08:20:44 MDT 2005
    // Remote interface for entity bean "PropsIdentity"
    import javax.ejb.*;
    import java.rmi.*;
    public interface PropsIdentity extends javax.ejb.EJBObject {
         int getKey() throws java.rmi.RemoteException;
         java.lang.String getValue() throws java.rmi.RemoteException;
         void setValue( java.lang.String value ) throws java.rmi.RemoteException;
         // TBD:  Add any additional remote method interfaces
         PropsIdentityHome.java
    package propsIdentity;
    // File generated by Desiderata Software's Blazix entity bean wizard
    // Thu May 05 08:20:44 MDT 2005
    // Home interface for entity bean "PropsIdentity"
    import javax.ejb.*;
    import java.rmi.*;
    import java.util.*;
    public interface PropsIdentityHome extends javax.ejb.EJBHome {
         PropsIdentity create(
                   java.lang.String value
                   ) throws javax.ejb.CreateException, java.rmi.RemoteException;
         PropsIdentity findByPrimaryKey( java.lang.Integer pkey ) throws javax.ejb.FinderException, java.rmi
    .RemoteException;
    }PropsIdentityHome.java
    code]
    package propsIdentity;
    // File generated by Desiderata Software's Blazix entity bean wizard
    // Thu May 05 08:20:44 MDT 2005
    // Home interface for entity bean "PropsIdentity"
    import javax.ejb.*;
    import java.rmi.*;
    import java.util.*;
    public interface PropsIdentityHome extends javax.ejb.EJBHome {
         PropsIdentity create(
                   java.lang.String value
                   ) throws javax.ejb.CreateException, java.rmi.RemoteException;
         PropsIdentity findByPrimaryKey( java.lang.Integer pkey ) throws javax.ejb.FinderException, java.rmi
    .RemoteException;
    PropsIdentityBean.java
    package propsIdentity;
    // File generated by Desiderata Software's Blazix entity bean wizard
    // Thu May 05 08:20:44 MDT 2005
    // Home interface for entity bean "PropsIdentity"
    import javax.ejb.*;
    import java.rmi.*;
    import java.util.*;
    public interface PropsIdentityHome extends javax.ejb.EJBHome {
         PropsIdentity create(
                   java.lang.String value
                   ) throws javax.ejb.CreateException, java.rmi.RemoteException;
         PropsIdentity findByPrimaryKey( java.lang.Integer pkey ) throws javax.ejb.FinderException, java.rmi
    .RemoteException;
    }PropsIdentityBean.java
    // Thu May 05 08:20:44 MDT 2005
    // Bean class for entity bean "PropsIdentity"
    import javax.ejb.*;
    import javax.naming.*;
    import java.rmi.*;
    public class PropsIdentityBean implements javax.ejb.EntityBean {
         //Instance member variables.
         public int key = 0;
         public java.lang.String value = null;
         // Entity context, can be used to obtain handles etc
         javax.ejb.EntityContext ejbEntityContext = null;
         //Getter/setter methods
         public int getKey() throws java.rmi.RemoteException
              return key;
         public java.lang.String getValue() throws java.rmi.RemoteException
              return value;
         public void setValue( java.lang.String value ) throws java.rmi.RemoteException
              this.value = value;
         // TBD:  Add implementations for any additional remote method interfaces
         // The default ejbCreate method.
         public java.lang.Integer ejbCreate(
                   java.lang.String value
              throws javax.ejb.CreateException, java.rmi.RemoteException
              this.value = value;
              return null;
         // TBD:  If any other ejbCreate's are added manually to the home interface, define them.
         // Other methods required in an entity bean
         public void setEntityContext( javax.ejb.EntityContext ejbEntityContext )
              throws RemoteException
              this.ejbEntityContext = ejbEntityContext;
         public void unsetEntityContext()
              throws RemoteException
              this.ejbEntityContext = null;
         public void ejbPostCreate(
                   java.lang.String value
         // TBD:  Do any post-instance-creation processing here
         public void ejbRemove()
              throws java.rmi.RemoteException, javax.ejb.RemoveException
         // TBD:  Do any processing here when instance is being removed
         public void ejbActivate()
              throws java.rmi.RemoteException
         // TBD:  Do any processing here when instance is activated
         public void ejbPassivate()
              throws java.rmi.RemoteException
         // TBD:  Do any processing here when instance is being passivated
         public void ejbLoad()
              throws java.rmi.RemoteException
         // TBD:  Load any data needed by instance
         //       in addition to the container-managed data.
         public void ejbStore()
              throws java.rmi.RemoteException
         // TBD:  Store any data used by instance
         //       in addition to the container-managed data.
    }     Script used to create table in mssql
    if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[PropsTableIdentity]') and OBJE
    CTPROPERTY(id, N'IsUserTable') = 1)
    drop table [dbo].[PropsTableIdentity]
    GO
    CREATE TABLE [dbo].[PropsTableIdentity] (
         [key] [int] IDENTITY (1, 1) NOT NULL ,
         [value] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
    ) ON [PRIMARY]
    GOAnybody have any clue on how to figure the entity bean to work with the identity column?

    Hi,
    CAN THIS BE DONE? This would be a good enhancement if not...???
    If I write a PL/SQL loop and want to add it to the utilities... IS THERE A WAY?

  • How do i combine single pages into documents with Adobe?

    How do i combine single pages into documents with Adobe?

    Hi zebideeplus,
    Using Reader, you need to purchase subscription for Adobe PDF Pack  to combine PDF files into single document.
    Refer: Acrobat.com Help | Adobe PDF Pack FAQ
    But, if you need to combine single pages, then it can be done with Adobe Acrobat only.
    Let me know if you have further queries.
    Regards,
    Anubha

  • How do I combine my iphone contact list with my laptop pc contact list?  And how does it handle duplicates with different information?

    How do I combine my iphone contact list with my laptop pc contact list? And how does it handle duplicates that have different information?
    How do I merge my iphone calendar appointments/alerts with my laptop pc calendar appointments/alerts?  And how does it handle duplicates?
    I do not need anything to change on my email that is working fine on both.

        gspielman,
    Help has arrived to assist you with getting those contacts on both your devices. The Verizon cloud service is definitely a great tool to use and you can also use Apple iCloud as well. When you sign into the Verizon cloud on your iPad does it give an option or message to restore?
    CandiceH_VZW
    Follow us on Twitter @VZWSupport

  • How do you have multiple apple id's with one itunes

    how do you have multiple apple id's with one itunes

    I have multiple IDs and use the single computer sharing itunes. By 'sharing' I mean we open the pc, open itunes and log in with our individual ID as required.
    While Im logged in I plug in  my device. I transfer my purchases from my device as per the file menu (not the check for auto downloads). I move them as required to whichever playlist I like.
    Then when my son wants to use itunes or update his device, he logs in, plugs in his device, transfers purchases from his device, puts whatever music he wants into his playlist and/or drags direct to the device regardless of who purchased it and then syncs.
    Im not sure how it works associating the pc with only one ID or all that other business- I know I don't fiddle with any of that.

  • How can you use iMessage between 3 iPads with 3 different users but only one Apple ID?

    how can you use iMessage between 3 iPads with 3 different users but only one Apple ID?

    No you do not need separate Apple ID's in order to use 3 devices with one Apple ID. I use 4 devices to Message and FaceTime and all use the same Apple ID. You do need to add additional email addresses for the other devices.
    Look at this very informative video for the instructions.
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l

  • How do you copy, for example I work with blue prints and I want to copy a section and copy into another new page?

    How do you copy, for example I work with blue prints and I want to copy a section and copy into another new page?

    Forgot to add that it would be an adjustment layer with some kind of mask on it already. The mask is uncentered when copy and pasted which throws it off.
    I guess the same question would go towards doing the same for an object. How to copy and paste it over to a new doc, keeping its position within the document? is this possible?

  • How do you make a page scroll horizontally with mouse wheel?

    As the title says, how do you make a page scroll horizontally with mouse wheel in edge animate?

    This should get you there
    http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/
    1. Load the mousewheel min script via CDN (jquery-mousewheel - cdnjs.com - the missing cdn for javascript and css)  into the Scripts Panel;
    2. Add the provided snippet into your Stage > compositionReady event handler.
    hth
    Darrell

Maybe you are looking for

  • Why is Messages in iOS 8.1 continuing to crash/freeze?

    I have a iPhone 6 Plus with 128 gb of storage and the iOS Messages app freezes/crash on a very frequent basis.  I have noticed this on occasion with other apps like iTunes player, Safari and Mail. But, iOS Messages is the worst offender. I do have tw

  • HT4614 Is there a Thunderbolt to HDMI adaptor for an external monitor?

    I use a mid-2011 13" MacBook Air.  My external Samsung Monitor (Synchmaster P2450) has started flickering.  It might be the Belkin minidisplay port > HDMI adaptor or some conflict with Thunderbolt (same port).   Should I invest in a new Belkin adapto

  • Multiple Gmail Accounts - one works, one doesn't.

    I have 2 gmail accounts - one for my business, and one for personal. I can't synch them both on the iphone - I am 100% confident that I have the address and pw correctly and the settings are the same for both on the iphone, but one of the accounts wo

  • Logging in ADF BC Applications.

    I am looking for logging implementation in ADF BC applications and I found oracle.adf.share.logging.ADFLogger as part of the ADF Model Runtime resources. Can we use this for logging in our Application development. What is the best way to implement lo

  • Installing OS X on iMac with dead screen

    Here's a tricky one... My friend has an iMac Intel Core 2 (it might be Intel Core 1, anyway it's an older white model...) His screen died couple of months back, it's just black no power in it... So he's using a secondary monitor and everything is fin