Reverse the order of Legend in Column Chart

Hello All,
Hope all is well. I tried to find way of doing it .... I am currently getting my legends in order ... but I wanted to reverse it ...can it be done ?
I can put simple text as legend but probolem is I have show/Hide series on and hence it wouldn't work ?
Anyone ?
Thanks in advance,
Sam

Hi,
Since you are looking after reversing the Legends Only..
I.g your column Order is A,B,C  With their correspodingin values in the cells A1:C2     
Just change the order Map C1->D1, B1->D2, A1 -> D3 and with the values as well...
This is only way if you want to reverse the order of legends..You can set any properites in the column char or if that matter any chart .There is no such property..
I hope this helps......
If you find that is done thru some other ways please do let me know...

Similar Messages

  • Is there a way to reverse the order of a finder column?

    I would like to reverse just one collumn instead of A>Z, Z>A. I have file numbers that I would rather have show up at the top. Does anyone know a way to do this?  Thanks!

    In List view, in the Name column, simply toggle view by clicking on the arrow.
    The Arrange icon in the Toolbar is also handy for selecting sort options. Try Kind to sort as files, folders etc.

  • Can I reverse the order of finder lists or icons?

    Hello,
    I am finding some problems with Lion that I never seemed to have with Snow Leopard and would very much appreciate someone's help.
    To cut a long story short I want to reverse the order of the files in finder, either in list or icon view (or maybe any kind of view). At the moment they are in date created order, but I have also tried in name order and cannot see any way to reverse the order.
    At present the are show the newest file first but I want to see them in oldest first as they always were for me in OSX 10.6
    Also... in date created view they appear in groups (eg previous 7 days, previous 30 days) I have never seen this before and find it particulalry annoying. I'm sure some people love it but for me it is one of the things that I most hated about windows, but at least in Windows I found it easy to turn off (along with reversing order!). Can anyone tell me how to stop OSX from doing this?
    Much obliged,
    Pablo

    Welcome to Apple Support Communities. We're users here and don't speak for "Apple, Inc."
    In Finder icon view, click the Arrange button and select which column you'd like to sort by.
    In Finder list view, click the top header of any column to sort by that column. Clicking the same header again reverses the sort order (and the small 'arrow' at the end of the column name reverses direction too).
    And using Finder, View, Customize Toolbar the Finder window toolbar can be customized to display icons only, text only or both, as well as adding additional icons to the default toolbar:
    Message was edited by: kostby

  • How do I reverse the order of photos/years in osx

    with the new OS X photos software it shows the most recent year at the bottom of my screen. How do I reverse the order so the most recent year is at the top. Thank you

    You can't at this time. Send a feature request to Apple.  You can use this feedback form:
    Apple - Mac OS X - Feedback

  • How can I reverse the order of podcasts so I can listen in cronological order

    How can I reverse the order of podcasts so I can listen in cronological order!

    What I did was create a playlist for the podcasts and keep it sorted in reverse date order, which puts the oldest first. To prevent it from automatically playing the next podcast, I actually mark all podcasts as "skip when shuffling", and then play in shuffle mode. I also make sure all my podcasts have a genre of "podcast"; I discovered that if you use media type, the playlist doesn't update correctly on the iPod classic
    So, what I've got is a playlist of the form: (play count = 0) and (genre = podcast), sorted in reverse date order.

  • How to reverse the order of a bunch of still images in an iMovie Project

    Hello,
    I'm making a stop motion animation using iMovie'09. I need to reverse the order of a few hundred of the images that I imported.
    Does anybody know a good and time efficient way of doing this?
    Cheers,
    Onur.

    Ok, here's how have I done:
    1. Removed those images from the movie project
    2. Created a new project and added all the images which I want to reverse the order of
    3. Set the durations of the images as same as those in my first project
    4. Exported the project as a movie file
    5. Added this short movie file to the first project
    6. From clip adjustments menu, checked 'reverse'.
    There, the subset of the whole collection is displayed in the reverse order.
    Message was edited by: Onur

  • Reverse the order of elements in an array

    how would i go about Reverse the order of elements in an array??

    I link to the javadocs can't be too bad. [url
    http://java.sun.com/j2se/1.5.0/docs/api/java/util/Coll
    >
    ections.html#reverse(java.util.List)]Collections.rever
    se(List)Of course I fortell the next question, but I wantan
    Array not a List? So I provide the next link:[url
    http://java.sun.com/j2se/1.5.0/docs/api/java/util/Arr
    ys.html#asList(T...)]Arrays.asList(T...)Yeah but then you have to worry about the next
    question which is more of a statement: "I can't use
    Arrays".
    Then I would as them: How would you do it in real life? Of course they could think a real world way of doing it. In that case, I'll give them an real life example.
    Assumed List
    1 2 3 4 5 6 7 8 9 10 11 12 13
    Switch the first and the last elements
    13 2 3 4 5 6 7 8 9 10 11 12 1
    Then the second and second to the last
    13 12 3 4 5 6 7 8 9 10 11 2 1
    And repeat until your half way.
    13 12 10 4 5 6 7 8 9 3 2 1
    13 12 10 9 5 6 7 8 4 3 2 1
    13 12 10 9 8 6 7 5 4 3 2 1
    13 12 10 9 8 7 6 5 4 3 2 1
    Done.

  • How to reverse the order of an OrderedMap?

    Is there a quick and efficient way to reverse the order of an OrderedMap?
    I'm sorta using an OrderedMap for 'breadcrumbs'. Traversing from a specific page, category by category all the way up to the top.
    For example:
    OrderedMap map = new LinkedMap();
    map.put( "Rabbit", "" );
    map.put( "Mammals", "/animals/mammals/index.jsp" );
    map.put( "Animals", "/animals/index.jsp" );
    Iterating it in my JSP view page, I get this order, which is wrong :
    Home >> Rabbit >> Mammals >> Animals
    Thats why I was wondering how I can reverse the order of the OrderedMap to get this:
    Home >> Animals >> Mammals >> Rabbit
    Thanks for reading.
    Regards,
    Stanley

    What about the following idea:
    you could write two wrapper classes:
    class ReverseOrderedMap implements OrderedMapand
    class ReverseOrderedMapIterator  implements OrderedMapIteratorIn these classes, you just map the methods
    firstKey -> lastKey
    lastKey -> firstKey
    nextKey -> previousKey
    next -> previous
    and so on. In this way, you just provide a "reversed view" on the original map.
    However, I'm not sure where elements added with put are ordered: Is it just in the sequence of addition? If yes, then the wrapped map behaves wrong, if new elements are added, because there is no corresponding "put at the begining" method. In this case, the wrapper should make the reversed map unmodifyable by implementing the put and putAll methods with throwing an exception.

  • Reverse the order of stacks list view

    Is there a way to reverse the order when viewing the contents of a stack in list view by date added?
    For example, the downloads stack: the default setting puts the most recently added at the top of the list, meaning I have to scroll up to it, rather than at the bottom, where it'd be right there above the icon to click on.
    Thanks for the help

    I completely agree with Solar Servant,
    The regular stacks view is viewable in this (very practical) direction, so why not the list variety?
    thanks for making a more usable OSX a reality

  • Can't remember how to reverse the order of the tracks in a playlist ~ can anyone help  me out?  Thanks.

    Can't remember how to reverse the order of tracks in a playlist.....can anyone help me out?  Thanks.

    Were you able to figure it out?

  • Is there a way to reverse the order of incoming mail in the new iPad?

    I want to reverse the order of incoming mail on my new iPad.    I want the oldest on top.  I can't seem to find where or even if I can do this.  Anyone know for sure?  Thanks!

    The Mail app only supports having the most recent at the top. You could see if any third-party email apps support it, or access your account via a browser (you can create a Safari shortcut on your iPad's homescreen for your login page).

  • How to reverse the order of a list (nodes)

    i can't figure out how to reverse the order of the values in a list of nodes. Could anyone help?
    public class IntList
         public IntNode head;
         public IntList()
              head = null;
         public void reverse()
              // I don't know how to write this
    }

    read through the list from the end to the start, putting each element into a new list. then replace the original list with the new one.
    lots of ways it can be done.
    dont ask me which is more efficient. the stack suggestion sounds pretty good.

  • How do I reverse the order of file lists in finder?

    When I display a finder page with icons the sort is ascending (A-Z), but when I use the list function it is decending (Z-A).  How do I reverse the list order?

    Welcome to Apple Support Communities. We're users here and don't speak for "Apple, Inc."
    In Finder icon view, click the Arrange button and select which column you'd like to sort by.
    In Finder list view, click the top header of any column to sort by that column. Clicking the same header again reverses the sort order (and the small 'arrow' at the end of the column name reverses direction too).
    And using Finder, View, Customize Toolbar the Finder window toolbar can be customized to display icons only, text only or both, as well as adding additional icons to the default toolbar:
    Message was edited by: kostby

  • How do I reverse the order in which files appear in Icon View option?

    I took a lot of pictures on a trip recently, which I have uploaded to a folder in Finder. When I click on View Options and then Keep Arranged by Date Created, they get rearranged so that the most recent appears at the top, and the first ones taken are at the bottom. How can I reverse this order, so that they appear in chronological order?
    Thanks,
    Richard

    There might be another way.
    There are utilities which can batch-rename files, including options that sort by date, begin all the resulting filenames with a common prefix, and then add a sequential "padded" filename suffix. If you then display the resulting collection of files in alphabetical order (as in Finder's Arrange by Name in icon view), they should be sorted chronologically.
    I haven't tried any of these, but the site for [A Better Finder Rename|http://www.publicspace.net/ABetterFinderRename/index.html], shareware, states:
    "A Better Finder Rename knows how to extract EXIF shooting date and time information from digital camera images and exploit them in creating sequence numbers or adding time and date information to the file name. "
    There may be suitable freeware alternatives -search for *file renamer* in [Version Tracker|http://www.versiontracker.com/macosx>.

  • Using Acrobat 9.5.5, I scanned a catalog in several segments, to merge later. How do I reverse the order of pages of the back side (odd) pages, and can I renumber each set as even numbers only and odd numbers only?

    I scanned a catalog for my archive - double sided pages of course.
    It was easy enough to scan the front pages first (odd numbers, 1-3-5) , in several sets of 30 pages, therefore several separate pdfs.
    Then I scanned the back side (even numbers 2-4-6) pages but in their natural reverse order, rather than manually reordering all 300 pages.
    Now I need to reorder the even pages which are naturally in reverse page number order (300-298-296...)
    and I need to renumber all of the pages as only odd or even numbers - set 1: pages 1-3-5-7... Set 2: 2-4-6-8...
    Then I can merge everything into one pdf.
    How can I reverse the page order?
    How can I renumber pages as only even or only odd numbers?
    Anyone have these solutions?  I don't use much of acrobats features, but it seems to be a pretty basic demand to be included. I can't find any clue in the software menus or online help.

    You can do such ordering with JavaScript. There is a recent post with a JavaScript for dealing with another aspect of page order that might provide what you want. You will have to search the forum for the post that was about 2 or 3 weeks ago as I recall.

Maybe you are looking for

  • Multiple DB inserts for 1 Submit

    Hello, We're running CFMX 6.1 on Win2003 Servers with Oracle 8.0.3 DB on UNIX. We have free projects available on our website in exchange for a consumer signing up for our email newsletter. Somewhere along the way between almost 2 years ago and just

  • Auto refresh facility is there in ADF swings?

    Suppose i am displaying data from the data base using updateable or read only view. If any record is updated or inserted on back end this should reflect on the front end. How achieve this in ADF swings. Auto refresh facility is there in ADF swings?

  • Probleme mit der Installation, Adobe CC und CC Packager

    Hallo! Habe mittels CC Packager ein Package gebastelt welche Illustrator CC, Photoshop CC, InDesign CC und Acrobat XI beinhaltet. Ich installiere dies direkt lokal an den Rechnern. Am Testsystem mit OSX 10.8 lief der  installer wunderbar perfekt durc

  • Sign in failed -- earlier installation ocurred? WHere?

    It won't let me install it.

  • How to get GP% in Sales Order

    Dear SBO experts. I have a request from my client where they wanted to see the GP% in the sales order. Can anyone help me with the steps please? BGee Shekar