Unable to change Axis y location from right side to left

Hi All,
I am working with OBIEE 11.1.1.1.7.
I am tring to change the location of AXIS Y (in chart) from right side to left.
please help :-)

Hi Tyson,
I did exactly what you have mentioned and it worked fine.
But when I am putting the same thing in my custom.css file as mentioned below, IT's NOT WORKING.
uploaded custom.css at
Application XXX>Shared Components>Cascading Style Sheets
custom.css
.TabHolder,.TabHolderC {text-align:left;}calling custom.css in the Page Template (one level tab)
<head>
<title>#TITLE#</title>
<link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_16/theme_3_1.css" type="text/css" />
<!--[if IE]><link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_16/ie.css" type="text/css" /><![endif]-->
<!-- added custom css file -->
<link rel="stylesheet" href="#WORKSPACE_IMAGES#custom.css" type="text/css"/>
#HEAD#
</head>Any idea why it is not picking up???...
Thanks,
Deepak

Similar Messages

  • How to change IM text box from right side to botto...

    During a video call with most of my contacts, the IM text box is below the video box and at the bottom of the screen. However, when my son calls (on new Samsung S5) the IM text box is to the right of the video box and on the right side of my screen.
    I prefer to have it at the bottom and would like to know how to change it.

    I have seen both layouts posted here in screen shots. I think that this may be one of those things that changes magically according to window width. Try dragging the window to a wider or narrower aspect ratio.
    This kind of thing should be an option, with an "auto" setting to preserve the current width-sensitive behavior for those who like it.
    Sean Ellis - uses Skype chat for serious work
    Click here to read my blog post on Skype 7 and basic principles of GUI design

  • Change tabs position from right side to left side

    Any one has any idea if the above is possible ?
    thanks
    Orna

    Sure, this is probably specified within the page template or in the corresponding css file.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

    Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

    Which operating system are you using?
    In photoshop elements 6, as far as i know, you can only change the Reference Point Location for transforms using the small grid in the left hand corner of the tool options bar with Transform enabled.

  • HT1051 I want to change my shipping location from Canada to Japan. I do not see the "edit shipping" option on my screen. How do I change shipping locations?

    I want to change my shipping location from Canada to Japan. I do not see the "edit shipping" option on my screen. How do I change shipping locations?

    Be aware that you can only ship to Japan if you order the book with a credit card with a Japanese billing address. 
    OT

  • I'm unable to change my install location for my apps.

    I'm unable to change my install location for my apps. I changed the preferences to the harddrive I want the apps to download to, but they keep trying to download to C.I don't have enough room on that drive

    Fixed. It seems like for whatever reason it took a good 10 - 15 minutes for it to recognize the changes in the preference menu

  • ABAP Substring function from right side

    Hi,
    I want a substring function in ABAP, which starts from right instead of left to display some character out of a complete string.
    Suppose there is a variable zdatavar -
    zdatavar = 'MyNameIsBush'.
    zdatavar = zdatavar+4(2).
    The above will start from the left.
    I want some function which start from the right.
    Your help will be greately appreciated.
    Regards,
    SC

    Hi,
    Please check if this is working.
    REPORT  Z0804.
    DATA str TYPE STRING.
    DATA str2 TYPE STRING.
    str = 'MyNameIsBush'.
    WRITE: / str.
    PERFORM rsubstring
        USING
            str
            2
        CHANGING
            str2
    WRITE: / str2.
    FORM rsubstring
        USING
            str TYPE STRING
            len
        CHANGING
            out TYPE STRING
        DATA:
            strln TYPE i,
            l_offset TYPE i,
            l_len TYPE i
        strln = STRLEN( str ).
        if strln GE len.
        l_offset = strln - len.
        l_len = len.
        out = str+l_offset(l_len).
        endif.
    ENDFORM.
    result:
    MyNameIsBush
    sh
    regards,
    Xiang Li

  • On FaceTime contact are on the left side of the screen...they use to be on the right side much better how do I change this listing to the right side?

    FFace time contact listing are on the left side of the screen they use to be on the right side...why the change and how can I change the listings to the right side?

    There doesn't seem to be a setting for that. As to why Apple made the change, only they would know.
    Submit your feedback directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Hi from few days onwards i found one abnormality in my iphone4s .That is if i observe my phone settings screen from right side of the device top navigation appearing rightside height is more than the left side. In reverse manner from the left side.

    Hi from few days onwards i found one abnormality in my iphone4s .That is if i observe my phone settings screen from right side of the device top navigation bar appearing rightside height is more than the left side. In reverse manner from the left side. I dnt know whether it is default feature of iphone or not but i am really disappointed due to this. So please anyone help me in this issue and let me clear my doubt and make me happy. Thanks in advance.

    I believe what you are seeing is an optical illusion when viewing the screen from the side. Try to align one of the one of the options in Settings, like General, with the navigation bar you'll see it does the same thing.
    Hope that helps

  • Move dynpro field text from right side on yhe left.

    Hi experts. I have a DDic field (char1 as chebox) on screen. I need to move the DDic text for this field from right side to the left side of the checkbox. How can I do it? Is it neccesary to split this one object into two? To create a new text field and handle it in program?
    Thanks for your answer.

    hi Mark,
    in the Graphical Screen Painter you have to right click on the field and you'll have some helpful options...
    ec

  • Two noise from right side when open the mbp

    Every time when I open the laptop, there are two sound like zi zi from right side of it, before the opening music, it sounds like reading the disc, is there something wrong with the computer?

    No.  The OS, when the MBP is started does a diagnostics check, testing the optical drive as a part of same.  That is the sound and it is normal.
    Ciao.

  • Remove zeros from right side

    Hi all,
    I want to remove zeros from right side.
    like : if value is '0.055500000000E+04'.
    then the output should be '0.0555'.
    How can i get such output.
    Plz help me....

    Hi,
    the problem here is u are dealing with a datatype of format F (i.e floating point ) and the output u desire is in packed format .
    You cannot delete the zeros of such data typesas type F instead u can move them to the packed datatype and get the result.
    do one thing declare a variable of type p and move the value of type f which u have right now to the variable u have declared as type p.
    data : v_val type p decimals 4.
    v_val  =  "               <------ assign the type f to type p over here .
    hope this helps .
    regards,
    vijay.

  • Unable to change apple ID location

    I was trying to make a purchase recently, but a message telling me I needed to update my billing info came up. For some reason, my country is listed as China (I live in Canada, I've never even been to China). I tried changing my country back, but I am unable to. I get to the "choose your country or region" page, and it says "You need a valid method of payment and billing address for a country in which iTunes is available. Please select a country from the lis below. If a country is not listed, it means iTunes is not available in that country yet."
    The problem is, there is no list to choose from. The page is blank, aside from that message. Ive tried restarting my ipad, logging out, but the page is always blank. I'm not even sure how my country was changed from Canada to China in the first place, but now I am unable to change it back. Any help would be greatly appreciated.

    If you are doing it via the iTunes & App Store option in Settings, then once you click on your AppleID, and then click on View AppleID>Country/Region>Change Country or Region, then you also need to click on "Store" where it is showing China right now.
    Once you click on "Store" it will then display the list, and you can scroll down to Canada.
    That should fix you up.
    But you are really going to have to do something about that sleepwalking problem!!!
    Cheers,
    GB

  • Unable to change the scoring scale from 1-10 to 1-5

    Hi,
    We are using E-sourcing 5.1
    We didn't see any options to change the scoring scale to 1-5.
    Note:
    For manual score question : system is asking us to score the scale 1-10
    only but would like to have 1-5 instead of scoring scale 1-10.
    Kindly let me know the process step to change the scoring scale
    Thank you,
    Mani

    Mani,
    Unfortunately I do not believe that there is any configuration option to change the scale range from "1-10" to "1-5". That range is fairly embedded within the application and is used by the scoring system to weight the response in determining an overall score.
    -Howie

  • Updating table from right side of shuttle

    I have a situation where I have a many to many relationship with 2 tables and an intermediate table. I am trying to create a shuttle item to be able to bring the two tables together. I have been reading the posts regarding populating the right side of the shuttle. That works now, but I have no idea how to take that and update the intermediate table with the values from the right side of the shuttle.
    I tried using APEX_APPLICATION.G_F02, but that only seems to work, if the values in the right side are highlighted.
    I can't seem to figure out what the name of the right hand of the shuttle is.
    Any help would be very welcome.
    Thanks, Greg

    Greg,
    Are you processing on submit? If so then the values would be avaialble by simply referencing the item. Each return value would be separated by a colon as in:
    1:2:3
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen
    http://sourceforge.net/projects/plrecur
    You can reward this reply by marking it as either Helpful or Correct ;-)

Maybe you are looking for