Legend shows items not in same sequence as stacked column chart

I inserted a stacked column chart
sequence in bar is A (bottom), B (middle), C (top)
legend shows it the other way around (A (top), B (middle), C (bottom)
How can sequence be aligned?
Thanks Bernd

Hi Bernd
Unfortunately you cannot change the sequence. 
However if you read the chart from a visual perception point of view the sequence does work, although it's less intuitive.  You first read the item closest to the x-axis, and you read the legend from the top to bottom.
Regards
[Charles|http://www.reportex.co.uk/xc_waterfallchart.html]

Similar Messages

  • How to  show additional items in the same window using stacked canvas

    How to show additional items in the same window using stacked canvas.
    My content canvas has 14 items, and I have to include more.
    I want to know how I can use a stacked canvas to show these additional items in the same window, so that I can scroll through horzontally , as if all the items are on one canvas.

    Well, I intially navigate into my content canvas. At this stage the stacked canvas is not visible, then how should I navigate to an item on the stacked canvas to make it visible?

  • Home Sharing and Show Items not in my Library

    I was very excited to finally be able easily sync up the iTunes libraries on my new home mini and my laptop, I was even more excited by the "Items not in my Library" option... but I seem to be having a issue it, that is probably a bug, and I'm wondering if others are seeing it too in 9.0.2:
    I transferred over an album no problem, then I went to transfer a setlist of live tracks by the same artist. Because it's live, many of the song names are the same. I had the *Show Items not in my Library* option selected and it hid (and thus didn't transfer) some of the tracks. I later realized that it had hidden the tracks that had the same name as the original album, even though they are quite different.
    I hope others experience this same issue and Apple will release an update fixing it. This issue will make it impossible to realiably synchronize libraries as they change.
    BTW - I've also noticed if you choose *Show: All items* and import a file that is a real duplicate it will copy it over and append a "1" creating a duplicate as opposed to replacing or updating the file.
    Thanks,
    =Blair

    The import button remains greyed out and therefore unavailable.
    Quickly doublechecking ... has the MacBook gone to sleep? If it's awake, does the Import button become active for you?

  • ITunes 10.6.1, Home sharing: Show: Items not in my Library

    iTunes Home sharing's feature to only show items not in my library used to work great, allowing me to keep my main iMac library and my MacBook Pro library synced. But just recently, my main library can no longer seem to sort out what items are unique in connected libraries -- it only shows the books that I don't have. Doesn't display movies, tv, music that aren't unique. I get the whole libary but once I press "Items not in my Libary" it doesn't work properly. What's odd is that I'm fine the other way. My MacBook Pro has no problems with the "Items not in my Library" selection when looking at my iMac's library.
    Has anyone noticed change for the worse in the behavior of Home Sharing with respect to showing items not in the local library? I've tried turning Home Sharing off, rebooting both computers, and then turning Home Sharing on. But that doesn't fix it.

    @Dr-House:
    Dude this worked!!!
    this was really bothering me!
    thanks a ton for posting and helping all us noobies!

  • Show Items Not in My Library Not Working

    So I'm trying to transfer my library from an old computer to my new one via Home sharing, and I downloaded my rather large library onto the new computer, yet for some reason songs were still missing. So I went to the "Show items not in my library."
    In that tab, was my entire old library, both songs that I already had in the new library and the missing files.
    Now I'm not going to go through a 6k library and pick out which songs individually I am missing on my new library  because it would take forever.
    Why is the "Items not in my library" tab showing my entire old library when most of it is on my new one?
    Any resolutions to this?

    @Dr-House:
    Dude this worked!!!
    this was really bothering me!
    thanks a ton for posting and helping all us noobies!

  • Stacked Column Chart Value does not show in Preview or SWF

    I have created a simple (one-column) stacked Column chart from an imported Excel 2007 spreadsheet. I am using 3 values and all three are there when I am editing the chart. When I do a Preview or Export it to a .swf file, the third value does not show up. It only shows the first two.
    I am running Xcelsius 2008, Version 5.1.3.0, build 12,1,3,495.
    Edited by: Rich Krejsa on Apr 9, 2009 9:35 PM

    Hi Rich,
    Try to rebind the data with the component and preview and see.
    Also check with other charts to see if you get the same behaviour.
    Try placing a table component and display those cell and see what values are there when you preview.
    There could also be posiblities that the third values must be very small as compared to the other two,so check that as well and may be select the secodry scale in the general tab for the 3rd series.
    Let me know if this helps.
    Thanks,
    Amit Mathur.

  • Stacked Column Chart Data Labels Not Appearing

    I am using SetSytle in Actionscript to make the data labels in a stacked column chart appear inside but it's not working.
    A portion of the code I am using to create the chart is below:
                    //initialize column set for stacked columns
                    var colSet:ColumnSet = new ColumnSet();
                    colSet.type="stacked";
                     for each(var node:XML in _chartDP){
                         var k:int = 0;
                         //skip zero datapoints
                         if (parseInt(node.toString()) != 0) {
                             //if measure node does not exist, add as series
                             k = uniqueYCat(node.attribute("BillTo"));
                             if (k == -1){                                                        
                                    // Create the new column series and set its properties.
                                    var localSeries:ColumnSeries = new ColumnSeries();
                                    localSeries.setStyle("labelPosition","inside");
                                    localSeries.dataProvider = dataArray;
                                    localSeries.yField = node.attribute("BillTo");
                                    localSeries.xField = "ConfidenceStatus";
                                    localSeries.displayName = node.attribute("BillTo");
                                    localSeries.setStyle("showDataEffect", ChangeEffect);
                                    // Back up the current series on the chart.
                                    var currentSeries:Array = chart.series;
                                    // Add the new series to the current Array of series.
                                    currentSeries.push(localSeries);
                                    //Add Array of series to columnset
                                    colSet.series.push(localSeries); 
                                       //assign columnset to chart
                                    chart.series = [colSet];
    After some more research, I put a breakpoint inside ColumnChart.as in the following function:
        mx_internal function getSeriesLabelPos(series:Series):void
            if(series is ColumnSeries)
                var columnSeries:ColumnSeries = ColumnSeries(series);
                var position:String = columnSeries.labelPos;
                if(position == "inside" || position == "outside" || position == "none")
                    _needLabels = true;
            else if(series is ColumnSet)
                var setSeries:Array /* of Series */ = ColumnSet(series).series;
                for (var i:int = 0; i < setSeries.length; i++)
                    getSeriesLabelPos(setSeries[i]);
    the following line: var position:String = columnSeries.labelPos;
    returns postion as null. It looks like the setStyle is not passing the correct value to this function.
    Any ideas as to what is going on?

    chart appearance is controlled by xml files located in
    {cfroot}\charting\styles. the file for bar charts is
    default.xml
    you will want to:
    1) copy thisfile to your site's root or some other folder
    (i.e. same
    folder that the page displaying your chart is in)
    2) edit the file and change isHideOverlapped attribute of
    labelStyle
    property for xAxis to "false"
    3) point the STYLE attribute of your cfchart tag to this new
    file.
    hth
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com/

  • TV Show Items not showing in iTunes Library (or Purchased Playlist)

    I recently purchased 4 episodes of the BBC Planet Earth series 1 in HD in four separate transactions.
    During the first transaction I was surprised that both the *HD version* and *Standard version* was in download list. Since this was my first purchase of an HD title (I did not want to pay unnecessarily for both versions) because the download was to play on Apple TV. I therefore deleted standard version from the download list.
    When I got my "invoice" I reported the two version download as a problem with *Apple iTunes Store*. The response was that both versions are downloaded for the HD price. They pointed out that should I wish to sync a copy to my iPod touch the standard version would be required. They also provided a re-download of the "non HD" version, a new button appeared in the bottom of the iTunes window.
    On the next 3 occasions I let the iTunes store download both versions of each episode. However I do not have a copy of the standard versions in my *Purchased Items* or they don't show in my *iTunes Library* either.
    In the *+Finder view+* the standard version ( .m4v files) are in the *+TV Shows folder+* together with the HD version.
    How can I get these into the *iTunes library* (so I can sync to the ipod) and the purchased items?
    I have tried via *+File>Add to Library+* does not work and Apple iTunes Store cannot offer advice!!
    Thanks in anticipation of your help

    Hello toi_va,
    I apologize, I'm a bit unclear on exactly what you are seeing or describing. If you are having issues finding this particular song, even after redownloading, you may find the information and steps outlined in the following article helpful:
    iTunes: Finding lost media and downloads - Apple Support
    Sincerely,
    - Brenden

  • ITunes 10.5.2 Snow Leopard: home sharing works but what has happened to "show items not on my computer"

    Question says it all: I can still see and play music from another home shared Mac, but in this latest iTunes version the option dialogue (to limit the items displayed to those not already on the viewing computer) at the bottom of the window is no longer there. Why not? This is a very useful way of syncing libraries between shared computers,and it is still mentioned in the Help file. Has Apple not noticed it has gone?

    @Dr-House:
    Dude this worked!!!
    this was really bothering me!
    thanks a ton for posting and helping all us noobies!

  • Query to show items not used in last 12 months

    Can anyone help with a query or is there a was in B1 to pull a report of item that have not had activity in the last 12 months?

    I drilled into one item that I knew we are still using. The date on my inactive report was 01/01/07. This is what was displayed in inventory posting.
    Posting Date     Document     Whse     Qty     Price after Disc.     Balance
    210070                         1,329
    1/2/2008     SO 3133     1     -560     $0.05      769
    1/29/2008     ST     1     231     $0.05      1,000
    1/31/2008     SO 3231     1     -585     $0.05      415
    1/31/2008     SO 3235     1     -415     $0.05      
    2/7/2008     PD 2898     1     5,500     $0.00      5,500
    2/8/2008     SO 3261     1     -642     $0.00      4,858
    2/12/2008     PU 6801     1          $249.98      4,858
    3/10/2008     SO 3429     1     -1,281     $0.05      3,577
    3/19/2008     SO 3520     1     -1,335     $0.05      2,242
    3/28/2008     PD 3065     1     5,500     $0.05      7,742
    4/3/2008     PU 7204     1          ($0.27)     7,742
    4/16/2008     SO 3756     1     -1,308     $0.05      6,434
    5/2/2008     SO 3884     1     -1,265     $0.05      5,169
    5/5/2008     SO 3946     1     -1,368     $0.05      3,801
    7/10/2008     SO 4494     1     -643     $0.05      3,158
                             3,158

  • Group Tree shows items not on report.

    Post Author: BSK
    CA Forum: General
    I have a report grouped by Items then suppress some of those items based on type or date.
    Is there any way to modify the Group Tree to also suppress the Items that the report suppresses?

    Post Author: BSK
    CA Forum: General
    That is what I would do but this report is unusual in the fact that I need to select all Items then elimnate the Items that fall into a Quantitiy qualification and print the Items that don't meet the Quantity qualification but fall into a date range.  For simple terms I want all items that don't qualify versus a standard report where you generally look for all items that do meet a qualification.  I can some reverse logic on the selection formula but is there any way to process the Group Tree during report processing and not strictly on the Group By field?

  • Why isn't my status bar showing for the home sharing? Neither the settings or 'show items not in my library' button are not coming up.

    I just want to share music with other computers but the status bar is not popping up. The other libraries are but I can't do anything with their media and vice versa.

    Hello there, aslasi.
    The following Knowledge Base article offers up some great steps for troubleshooting your issue:
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Update other items with the same value when when column contains Y

    CREATE TABLE TEST
       (     "QUATINTY" NUMBER(17,2),
         "AMOUNT" NUMBER(17,2),
         "ERRORRED" VARCHAR2(16 BYTE),
         "PO" VARCHAR2(12 BYTE),
         "LINE" VARCHAR2(10 BYTE),
         "SEQ" VARCHAR2(14 BYTE),
         "INVOICE" VARCHAR2(16 BYTE)
    Insert into TEST (PO,QUATINTY,AMOUNT,ERRORRED,LINE,SEQ,INVOICE) values ('123',5,50,'Y','1','1','inv1');
    Insert into TEST (PO,QUATINTY,AMOUNT,ERRORRED,LINE,SEQ,INVOICE) values ('123',5,50,null,'1','2','inv1');
    Insert into TEST (PO,QUATINTY,AMOUNT,ERRORRED,LINE,SEQ,INVOICE) values ('125',5,50,null,'1','1','inv2');
    Insert into TEST (PO,QUATINTY,AMOUNT,ERRORRED,LINE,SEQ,INVOICE) values ('125',4,50,null,'1','2','inv2');If you notice by the table above what im trying to acomplish is update the errorred column with 'Y' if any of the po and invoice are the same and have a 'Y' on the errored column.
    in other words, i should end up with 'Y' in the errorred column for INV1.
    Can someone point me in the right direction i cant for the life of me figuered this one out.

    Hi,
    Here's one way:
    UPDATE     test
    SET     errorred     = 'Y'
    WHERE     NVL (errorred, 'N') != 'Y'
    AND     (po, invoice)          IN (
                              SELECT  po, invoice
                         FROM      test
                         WHERE      errorred  = 'Y'
    ;This assumes that po and invoice are not NULL. If either column can be NULL, then the solution might be a little messier, depending on the results you want, but only a little. Post some sample data (with NULLs) that shows what kinds of situations you need to handle, and the results from that sample data.

  • Show 2D Stacked column chart values

    Hi,
    I use the following sql which shows the percententage of errors in a month
    SELECT NULL
    ,      TO_CHAR(MA.DATE_LOGG,'Mon'),
    sum(decode(el.error_type,'On',1,0)) "Ons",
    sum(decode(el.error_type,'Pa',1,0)) "Prt",
    sum(decode(el.error_type,'No D',1,0)) "No D",
    sum(decode(el.error_type,'Sys',1,0)) "Sys",
    sum(decode(el.error_type,'Oth',1,0)) "Oth"
    FROM
           table1 MA, table2 EL, table3 CR
           WHERE
                     MA.ERROR = EL.ERROR
           AND       MA.ERROR IS NOT NULL
           AND       MA.COUNTRY = CR.COUNTRY_CODE        
          AND       TO_CHAR(DATE_LOGG,'YYYY') = nvl(:P5_FILTER,to_char(sysdate,'YYYY'))
          AND       CR.REGION_CODE = NVL(:P5_REGION,CR.REGION_CODE)
    GROUP BY TO_CHAR(MA.DATE_LOGG,'Mon'),  trunc(ma.date_logg, 'Month')
    ORDER BY  trunc(ma.date_logg, 'Month')Now the values are showing correctly, however, the bar stacked shows the actual percentage value, e.g 60% on the stacked bars. When we mouse over the bar it shows the "No D", Sys, Oth . Is there a way to permanently show both the Decode type and the percentages?
    Apex 4.1/11g
    Thanks,
    Sun

    Hi Sun,
    If you wish to incorporate the series name in the values displayed on the bar elements themselves, then you will need to customise the chart XML and update the <label_settings> tag to incorporate {%SeriesName}. I've added an example to my sample application, outlining where the XML needs to be modified: http://apex.oracle.com/pls/apex/f?p=36648:90. For a complete list of available AnyChart keywords, such as %SeriesName, please refer to the AnyChart online documentation: http://anychart.com/products/anychart/docs/users-guide/label-text-formatting.html?fromtree.
    I hope this helps.
    Regards,
    Hilary

  • 2D stacked column does not show values

    Hi Friends,
    I am new to Apex. I have a 2D column chart with two columns for every data point. The display value check box is checked and I can see the values on the chart. But now when i to make it a stacked 2 D column, the Show Values checkbox field gets disabled and the values does not appear on the stacked 2D column chart. I tried the same with 3S stacked column chart and even there the show values gets disabled.
    Is there any way i can display the values on the chart for a stacked column? I can see the values when i hover on it in case of Stacked column chart but I need to display the values on the chart.
    Kindly let me know how i can do this in Apex?

    Hi Pradeep,
    In earlier releases of Application Express, the supported version of AnyChart Flash charts did not fully support the display of values for Stacked charts. Therefore, the "Show Values" checkbox would be disabled on the Chart Attributes page. Since our 4.0 release, with the integration of AnyChart 5 charts, the option to display values on stacked charts is exposed via the Chart Attributes page. To take advantage of this option, along with many other charting improvements introduced with our 4.0 release, I would recommend that you upgrade to the latest version of Application Express.
    Alternatively, you could switch your existing chart to use custom XML, and change the following line of code in the chart XML from:
    <names show="no"/> to <names show="yes"/>For further information on customising your chart XML, please refer to the AnyChart 3 documentation: http://3.anychart.com/products/docs/anychart/index.htm.
    Regards,
    Hilary

Maybe you are looking for

  • Photo Album Won't Play on Internet

    CS4 created a photo album, it plays fine in my browser from my hard drive, from our local server and from a memory stick. I have uploaded the entire site to our internet server but the index.html file is solid black and doesn't run the album. Why?? H

  • Jumpy Apple TV

    I have MacBook Air and have been using Apple TV with i with no problem until a recent update for Apple TV. Now the picture and sound jump every few seconds and its not a streaming issue. can anyone help? I have tried restarting.

  • Receiving error messase for local name change

    receiving message on my imac that local name already exists on the local network and "would you like to change to new name number .local" not sure why this is happenining any answers out there?

  • Trouble installing 10.5.6 update

    I am having difficulty installing the OS X 10.5.6 update. When I try to install this update using the software updater, it ends up freezing without completing the update. When I click install from the software updater, it asks me if I want to restart

  • How do i upload photos from an external source to my phone

    I recently moved all my photos from my phone onto my flash drive and did not just copy them in hopes I could simply select the few that I want and have all the rest backed up to a secure source.  I would like to get the few pictures back onto my phon