Display -ve Measure Values in Horizontal Bar Chart on right hand side or in bar

In OBIEE I have an issue where the negative measure values in a horizontal bar chart are displayed on the left and overlap with the Y axis values, how do I force these values to be displayed on the right or in the bar itself ? The measure values are set to always on, hoverover cannot be the solution

Hi,
It should not be overlapped. If you are using horizontal bar then 0 will come in center. It should show structure like:
|
|
|
|
|
|-------------------------------------------------
     -4     -2     0     2     4
May I know in your report, how it is looking and what is your requirement.
Thanks

Similar Messages

  • I have no bar on the right-hand side to move down the page

    There is no bar or arrows on the right-hand side, so I am unable to move the page down

    that would probably be caused by a Theme, and Extension, or a Style, you can check that ouit quickly by testing in safe mode (one time restart of firefox)
    * "Alt+H": (Help) > "Restart with Add-ons disabled", do NOT click on any of the checkmarks as they will destroy data.
    If you have scrollbar there you need to isolate the problem
    If only one one site, there are a lot of creative web designers who think if you have a wide screen they should make use of all of the width.
    Meanwhile other methods of scrolling up and down.
    * mouse wheel
    * "SpaceBar" (PageDn), "Shift+SpaceBar" (PageUp)

  • My creative cloud icon has gone from the menu bar on top right hand side of screen

    the creative cloud icon is gone from the menu bar?  How can I get it back?

    Sometimes too many open apps will hide it, but if it closed,
    Restart the Creative Cloud app. Look for it in Spotlight.
    Gene

  • The top two inches of my firefox screen seem non responsive i.e. unable to click on links or grab the scroll bar on the right hand side of the screen if it is within the top two inches below the tool bar

    It seems that for whatever reason, I am unable to click on any links, pictures, or anything really within the top two inches of my internet browser screen, it seems like a "dead zone'' of sorts.
    the tool bar is fine, and from about two inches down on the screen everything is responsive.

    The Yahoo! Toolbar extension has been reported to cause this issue.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    You can keep an eye on this thread:
    *[[/forums/contributors/707748]]

  • Since installing the 8.0.1 upgrade, when I am in either Hotmail or Gmail I cannot use the header tabs such as delete, move to etc nor the scroll bar at the right hand side. Can anyone help?

    No more details to above question

    If you simply would have posted here first, there are plenty of people who would have informed you of the current policy to have a data plan active on an account during the entire contract if purchasing a discounted smartphone.
    Unfortunately, there are just as many on here who would claim the people informing you about this policy of being Verizon plants spreading disinformation and trying to make people afraid to upgrade via this route.
    Yes this is a new policy, one which has been pointed out multiple times in these forums.  Good luck, but I doubt you will have an outcome over this which will make you happy.
    Verizon is closing as many loopholes to keep unlimited data as they can.

  • I have lost scroll bar on right hand side of the playlist, how can I get it back?

    I have lost the scroll bar on the right hand side of my playlist. Does anyone know how to get it back?

    This issue can be caused by the Babylon Toolbar extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • SelectOrderShuttle.. Default Right hand side values

    Hi,
    We have a requirement like when page loads records have to be displayed in the both right hand and left hand side of selectOrderShuttle,
    am able to populate the left hand side,
    How can we populate the Right hand side values when the page fist time load?
    I will appreciate if you give some small example.
    We are using Jdeveloper 11.1.1.4.0
    Thanks,
    Vijay.

    Check this sample:
    SelectOrderShuttle.jspx:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:form id="f1">
    <af:selectOrderShuttle label="Select Order Shuttle"
    value="#{SelectOrderShuttleBean.displayValue}"
    leadingHeader="Available Items"
    trailingHeader="Selected Items"
    binding="#{SelectOrderShuttleBean.selectOrderShuttle}">
    <f:selectItems value="#{SelectOrderShuttleBean.selectValues}"/>
    </af:selectOrderShuttle>
    <af:commandButton text="Display Selected Items" id="cb1"
    partialSubmit="true"
    actionListener="#{SelectOrderShuttleBean.showSelectedValues}"/>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    SelectOrderShuttleBean.java:
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.event.ActionEvent;
    import javax.faces.model.SelectItem;
    import oracle.adf.view.rich.component.rich.input.RichSelectOrderShuttle;
    public class SelectOrderShuttleBean {
    private RichSelectOrderShuttle selectOrderShuttle;
    private List<SelectItem> selectValues = new ArrayList<SelectItem>();
    private List<String> displayValue = new ArrayList<String>();
    public SelectOrderShuttleBean() {
    super();
    // Populate the list
    if (selectValues != null) {
    selectValues.clear();
    selectValues.add(new SelectItem("Value",
    "Display Text For Value"));
    selectValues.add(new SelectItem("Value1",
    "Display Text For Value1"));
    selectValues.add(new SelectItem("Value2",
    "Display Text For Value2"));
    selectValues.add(new SelectItem("Value3",
    "Display Text For Value3"));
    // Populate the selected list
    if (displayValue != null) {
    displayValue.clear();
    displayValue.add("Value");
    displayValue.add("Value1");
    public void setDisplayValue(List<String> displayValue) {
    this.displayValue = displayValue;
    public List<String> getDisplayValue() {
    return displayValue;
    public void setSelectValues(List<SelectItem> selectValues) {
    this.selectValues = selectValues;
    public List<SelectItem> getSelectValues() {
    return selectValues;
    public void setSelectOrderShuttle(RichSelectOrderShuttle selectOrderShuttle) {
    this.selectOrderShuttle = selectOrderShuttle;
    public RichSelectOrderShuttle getSelectOrderShuttle() {
    return selectOrderShuttle;
    public void showSelectedValues(ActionEvent actionEvent) {
    if (this.selectOrderShuttle != null) {
    List<String> currentSelectedItems =
    (List<String>)this.selectOrderShuttle.getValue();
    if (currentSelectedItems != null) {
    System.out.println("::: Current Selected Items ::");
    for (String currentSelectedItem : currentSelectedItems) {
    System.out.println(currentSelectedItem);
    You can download the sample at
    http://code.google.com/p/adfsampleapplications/source/browse/trunk/SelectOrderShuttleSample.zip
    Thanks,
    Navaneeth

  • VERTICAL SLIDING BAR ON RIGHT HAND SIDE OF THE SCREEN HAS DISAPPEARED - HOW DO I GET IT BACK PLEASE?

    VERTICAL SLIDING BAR ON RIGHT HAND SIDE OF THE SCREEN HAS DISAPPEARED - HOW DO I GET IT BACK PLEASE?

    This issue can be caused by the Babylon Toolbar extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • The progress bar (in green)which was visisble at the right hand side down in Firefox 3.6.8,is not visible here which seems little unfriendly.

    The progress bar (in green)which was visisble at the right hand side down in Firefox 3.6.8,is not visible here which seems little unfriendly.Or is it available(may be there is some settings i have to apply)?Please tell me if it is available in this version or not,and if yes then how to bring it.Thanks!

    You can add the progress indicator in the Firefox 4 add-ons bar with the [https://addons.mozilla.org/firefox/addon/status-4-evar/ Status-4-Evar] add-on

  • Pie chart drop shadows not printing properly.. cuts off right hand side of pie chart...???

    Every time I go to print a pie chart that has a drop shadow applied to it, it cuts off the right hand side of the chart along with the shadow itself.  It looks HORRIBLE!!!  I went through and created a bunch of reports using that method, and now ALL of them have this problem.  It makes ZERO sense to me, and it appears that nobody else is experiencing this.  Does anybody have any ideas?

    It may be a good idea to read :
    http://support.apple.com/kb/TA23140
    Yvan KOENIG (VALLAURIS, France) mardi 19 juillet 2011 19:10:01
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • TS3274 Email display problem: My email only display the list of emails and a preview (first two lines of the body of the mail). If one click on the message it only shows the heading on the right hand side of the screen, but not the content.

    My email only display the list of mails in my in box with a preview of the first two lines of the body of the message. When one clicks on the message to open it, only the header is displayed in the right hand side of the screen - the actual message is missing. This happens on older mail previously downloaded that use to work properly as well. Any idea how to fix this?

    Try closing the Mail app completely and see if it works properly when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • For some reason my google search bar which normally sits in the top right hand side of my screen has disappeared, but my normal search bar still remains. I want to get the google search bar back, but I'm not sure how

    for some reason my google search bar which normally sits in the top right hand side of my screen has disappeared, but my normal search bar still remains. I want to get the google search bar back, but I'm not sure how

    See Here...
    https://discussions.apple.com/message/19334395#19334395

  • Need to check tls/ssl but getting stuck with "You must provide a value expression on the right-hand side of the '-' operator."

    I would like to disable ssl 3 but need to test what sites only support ssl 3. I keep getting stuck with an error that is over my head. I've tried manipulating the string a dozen different ways and keep getting the same error. I am not familiar with -notin
    or how to specify which part of the property its checking: thanks a ton
    http://blog.whatsupduck.net/2014/10/checking-ssl-and-tls-versions-with-powershell.html
    line with issues:
    $ProtocolNames = [System.Security.Authentication.SslProtocols] | gm -static -MemberType Property | where-object{$_.Name -notin @("Default","None") | %{$_.Name}
    You must provide a value expression on the right-hand side of the '-' operator.
    At S:\scripts\test23.ps1:50 char:126
    + $ProtocolNames = [System.Security.Authentication.SslProtocols] | gm -static -MemberType Property | where-object{$_.Name - <<<< noti
    n @("Default","None") | %{$_.Name}
    + CategoryInfo : ParserError: (:) [], ParseException
    + FullyQualifiedErrorId : ExpectedValueExpression
    <#
    .DESCRIPTION
    Outputs the SSL protocols that the client is able to successfully use to connect to a server.
    .NOTES
    Copyright 2014 Chris Duck
    http://blog.whatsupduck.net
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    .PARAMETER ComputerName
    The name of the remote computer to connect to.
    .PARAMETER Port
    The remote port to connect to. The default is 443.
    .EXAMPLE
    Test-SslProtocols -ComputerName "www.google.com"
    ComputerName : www.google.com
    Port : 443
    KeyLength : 2048
    SignatureAlgorithm : rsa-sha1
    Ssl2 : False
    Ssl3 : True
    Tls : True
    Tls11 : True
    Tls12 : True
    #>
    function Test-SslProtocols {
    param(
    [Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true,ValueFromPipeline=$true)]
    $ComputerName,
    [Parameter(ValueFromPipelineByPropertyName=$true)]
    [int]$Port = 443
    begin {
    $ProtocolNames = [System.Security.Authentication.SslProtocols] | gm -static -MemberType Property | where-object{$_.Name -notin @("Default","None") | %{$_.Name}
    process {
    $ProtocolStatus = [Ordered]@{}
    $ProtocolStatus.Add("ComputerName", $ComputerName)
    $ProtocolStatus.Add("Port", $Port)
    $ProtocolStatus.Add("KeyLength", $null)
    $ProtocolStatus.Add("SignatureAlgorithm", $null)
    $ProtocolNames | %{
    $ProtocolName = $_
    $Socket = New-Object System.Net.Sockets.Socket([System.Net.Sockets.SocketType]::Stream, [System.Net.Sockets.ProtocolType]::Tcp)
    $Socket.Connect($ComputerName, $Port)
    try {
    $NetStream = New-Object System.Net.Sockets.NetworkStream($Socket, $true)
    $SslStream = New-Object System.Net.Security.SslStream($NetStream, $true)
    $SslStream.AuthenticateAsClient($ComputerName, $null, $ProtocolName, $false )
    $RemoteCertificate = [System.Security.Cryptography.X509Certificates.X509Certificate2]$SslStream.RemoteCertificate
    $ProtocolStatus["KeyLength"] = $RemoteCertificate.PublicKey.Key.KeySize
    $ProtocolStatus["SignatureAlgorithm"] = $RemoteCertificate.PublicKey.Key.SignatureAlgorithm.Split("#")[1]
    $ProtocolStatus.Add($ProtocolName, $true)
    } catch {
    $ProtocolStatus.Add($ProtocolName, $false)
    } finally {
    $SslStream.Close()
    [PSCustomObject]$ProtocolStatus
    Test-SslProtocols -ComputerName "www.google.com"

    V2 version:
    function Test-SslProtocols {
    param(
    [Parameter(
    Mandatory=$true,
    ValueFromPipelineByPropertyName=$true,
    ValueFromPipeline=$true
    )]$ComputerName,
    [Parameter(
    ValueFromPipelineByPropertyName=$true
    )][int]$Port = 443
    begin {
    $protocols=[enum]::GetNames([System.Security.Authentication.SslProtocols])|?{$_ -notmatch 'none|default'}
    process {
    foreach($protocol in $protocols){
    $ProtocolStatus = @{
    ComputerName=$ComputerName
    Port=$Port
    KeyLength=$null
    SignatureAlgorithm=$null
    Protocol=$protocol
    Active=$false
    $Socket = New-Object System.Net.Sockets.Socket('Internetwork','Stream', 'Tcp')
    $Socket.Connect($ComputerName, $Port)
    try {
    $NetStream = New-Object System.Net.Sockets.NetworkStream($Socket, $true)
    $SslStream = New-Object System.Net.Security.SslStream($NetStream, $true)
    $SslStream.AuthenticateAsClient($ComputerName, $null, $protocol, $false )
    $RemoteCertificate = [System.Security.Cryptography.X509Certificates.X509Certificate2]$SslStream.RemoteCertificate
    $protocolstatus.Active=$true
    $ProtocolStatus.KeyLength = $RemoteCertificate.PublicKey.Key.KeySize
    $ProtocolStatus.SignatureAlgorithm = $RemoteCertificate.PublicKey.Key.SignatureAlgorithm.Split("#")[1]
    catch {
    Write-Host 'Failed'
    finally {
    New-Object PsObject -Property $ProtocolStatus
    $SslStream.Close()
    Test-SslProtocols -ComputerName www.google.com
    ¯\_(ツ)_/¯

  • My emails won't display on right hand side of iPad sceen

    Emails won't display their content on the right had side of screen on my iPad , gmail

    Quit the app completely. Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the mail app icon. Tap the home button or anywhere above the task bar. Try mail again.
    If that doesn't work - Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • The search bar in the top right hand side of my screen works fine, but the main search bar in the middle of the home screen doesn't at all; do you know how I can fix this?

    I can access bookmarked pages, pages that are on a saved RSS feed, and can search the web using the top right-hand bar on my screen. However, the main bar, in the center of the home page (not sure of the correct name) will not do anything - whether I press search, or hit enter on my keyboard. There also appears to be another bar underneath that, which I can press, but it remains useless.
    My Dad is running Firefox 4 on his computer, and has showed me what it is meant to look like. I can therefore conclude that there is definitely something up with mine.
    I am currently using Firefox 4 with my laptop, which runs Windows 7.
    I have uninstalled and reinstalled Firefox 4, but the problem still remains. I am not keen to use Internet Explorer, purely because I have bookmarked so many pages on the previous version of Firefox but also because I get on very well with the whole layout etc.
    If it comes to it, I am willing to take the risk of losing my bookmarks, but if there are any suggestions at '''''all''''' of how I could possibly fix this problem, I would welcome them.

    Go to this address: http://mycroft.mozdev.org/search-engines.html?country=AU
    Item 24 lists 3 installable major search engines for Australia.
    You can also restrict your search in Google by including ''country:au'' or ''location:au'' or ''city:perth'' (for example) in your search terms. Example: ''city:sydney plumbers'' in the Google search box will list plumbers in cities named sydney.

Maybe you are looking for