Break for Horizontal Axis Labels in OBIEE 11g Bar Chart

Hi all,
I have a vertical bar chart created in OBIEE 11g. The horizontal axis (x-axis) is a compound of Scenario, Year, and Month. The chart width is already long enough so it cannot be made any longer.
The chart looks like this (the label of horizontal axis is staggered):
___llllllllllllll_________llllllllllllll_________llllllllllllll_________llllllllllllll
___llllllllllllll_________llllllllllllll_________llllllllllllll_________llllllllllllll
___llllllllllllll_________llllllllllllll_________llllllllllllll_________llllllllllllll
___llllllllllllll_________llllllllllllll_________llllllllllllll_________llllllllllllll
Actual Feb 2012____________Actual Apr 2012
___________Actual Mar 2012_____________Actual May 2012
How can I force the labels for the horizontal axis to be broken into 2 lines (or even 3 lines), so that it will look like this:
___llllllllllllll_________llllllllllllll_________llllllllllllll_________llllllllllllll
___llllllllllllll_________llllllllllllll_________llllllllllllll_________llllllllllllll
___llllllllllllll_________llllllllllllll_________llllllllllllll_________llllllllllllll
___llllllllllllll_________llllllllllllll_________llllllllllllll_________llllllllllllll
___Actual________Actual________Actual________Actual
__Feb 2012_____Mar 2012_____Apr 2012______May 2012
Any advice? Thanks a lot!

Hi Stewart,
I could not try this yet, but how about 'Enabling the Contains HTML Markup' for the columns for Heading and including a '</br>' tag at the end of the name.
Ex: Column - >Properties -> column Format -> Column Heading -> Enable Contains HTML Markup -> Column Heading's suffix =less than symbol /br greater than symbol (Oracle forums is even break the line too!! ;) So included the text)
Hope this helps.
Thank you,
Dhar
Edited by: Dhar on 15-May-2012 20:11
Edited by: Dhar on 15-May-2012 20:12

Similar Messages

  • How to give individual horizontal axis label to two stacked bar of cartesian chart

    I have a cartesian chart showing no. of xyz and no.of abc for a particular period of time. i.e. two bars corresponding to xyz & abc for Jan, and then again two bars corresponding to xyz & abc for Feb, and so on. I have used label function to give label to horizontal axis such that labels look like "xyz abc (nextLine) Jan" ,"xyz abc (nextLine) Feb".
    But the issue is that the label is not centre alligned to the respective bars, i.e. xyz is not coming under xyz bar and abc is not coming under abc bar. the whole label's alignment is somewhere in between the two bars on x-axis. And i want to have label centre alligned to their respective bars, i.e 'xyz' should be centre alligned to 'xyz' bar, and 'abc' label should be centre alligned to 'abc' bar, along with the time period value. I have tried giving space in between "xyz" and "abc" but the problem occurs when data varies.They again don't seems centre aligned. I want x-axis label for each bar along with the categoryaxis's  category field.
    So,is there any way to achieve such functionality??

    Could you post a screenshot of your current output and maybe a mockup of the desired output?

  • Graph Data Labels in OBIEE 11g - Customizing

    Hi folks!
    Would somebody know how to select what is shown in graph data labels in OBIEE 11g?
    For example in a scatter graph data label I'd like to show the Group only (not the combination of Series, Group, X and Y, as by default). For a pie chart one can select the data shown in data labels to some extent (name / value), however couldn't find this option for scatter graph.
    After searching I could only find instructions for 10g - such as John's instructions at http://obiee101.blogspot.com.es/2008/01/obiee-xy-and-data-in-mouse-over-label.html.
    However, my understanding is that the graph engine in OBIEE 11g is now different, and the 10g instructions are not valid for 11g anymore.
    I was also having a look on the .cxml files in OBIEE 11g but those seem to relate to colors only?
    Any help appreciated, best regards,
    Ilmari

    hello,
    i'm facing the same situation here,did you find a solution for your problem?

  • Diplay all rows for a single report in OBIEE 11g

    Hello All,
    Do we have any way to display all rows by default for only one report in OBIEE 11g rather than the regular 25 rows and clicking on all the rows. Without changing the configuration on instanceconfig.xml.
    Please advice.
    Thanks,
    VidyaS.

    Using Table View:
    Table Properties->Edit View
    Se the max number at 'Rows per Page'
    Or use Pivot Table View
    If helps pls mark as correct
    Edited by: Srini VEERAVALLI on Jan 8, 2013 8:12 AM

  • Horizontal axis Labels in tabular style

    I have a weird requirement. I want to draw the horizontal axis of a  column chart in a tabular style, like a table with one row. each label  will become one cell. I am trying to tweek it out, since I can see  labelRenderer of AxisRenderer is the only way for that. I had a small lead, when I used opaquebackground to give the backgound color. But since am using label renderer for formatting the labels, the opage background is painting in too much thickness. please give any  input if anyone have any other lead.

    Hi Stewart,
    I could not try this yet, but how about 'Enabling the Contains HTML Markup' for the columns for Heading and including a '</br>' tag at the end of the name.
    Ex: Column - >Properties -> column Format -> Column Heading -> Enable Contains HTML Markup -> Column Heading's suffix =less than symbol /br greater than symbol (Oracle forums is even break the line too!! ;) So included the text)
    Hope this helps.
    Thank you,
    Dhar
    Edited by: Dhar on 15-May-2012 20:11
    Edited by: Dhar on 15-May-2012 20:12

  • Horizontal Axis labels display

    I have a graph with the a daily value for a whole year which
    means I have 365 values on one graph the lineseries are readable
    but the fact to have 365 labels on the X-axis makes it not
    readable. Does anybody knows how to display only one label over ten
    of the horizontal axis.
    Thank you for your help.

    Anyone help me in this ???
    some time i need to hide them also. how to do ?

  • Horizontal axis labels

    Hi everyone.
    I've got a line graph, and currently the labels on the horizontal axis are centered on the gridlines / ticks. How can I move the labels so they appear between the lines?
    any help much appreciated!
    Kieran

    I can't give you a full answer, but I can point you in the
    right direction
    1) Add a label function to your categoryAxis
    <mx:horizontalAxis>
    <mx:CategoryAxis labelfunction=test categoryField="cdate"
    />
    </mx:horizontalAxis>
    2) Code your label function in an AS block something like
    this:
    public function test(categoryValue:Object,
    previousCategoryValue:Object, axis:CategoryAxis,
    categoryItem:Object):String{
    if (previousCategoryValue == null){
    return categoryValue.valueOf();
    }else if (previousCategoryValue.valueOf() !=
    categoryValue.valueOf()){
    return categoryValue.valueOf();
    }else
    return "";
    Now, the thing is, your axis category is going to be a date,
    right ? I'm guessing, because I haven't seen your data. So, each
    date will be different to the next, so you'll ALWAYS fall into the
    second condition of the for loop. What you'll have to do is extract
    the "year" value and store that in a temporary value that always
    stored the "Current" value, example: 2005. When you come across a
    year of 2006 (temp != current year value of the axis), return the
    NEW current year value.
    If you are including the "year" value in your datasource
    item, you can access that in the "categoryItem" variable. If you
    debug the above code, you'll get a better look at what's going on.
    I'm sure you'll have no problem going from here.
    Cheers,
    David

  • How do I create a line break in an axis label

    I have a very long x-axis label that needs some line breaks. I've tried every key combination I can think of to no avail. Does anyone know how?
    Thanks,
    Mark

    There are a few ways to get line breaks.
    First way: Go to the Chart Inspector, Axis tab.  At the bottom it will either have references to the header cells it is using for labels or it will have a list of the labels. If it has references, use the second or third method.  If it has text, go to the label you want to modify.  Use Option-Return to put a line break in it.
    Second way: This works when best before you create a chart and might work afterward if the chart is still refering to the header column and hasn't converted the labels to text. Use option-Return to create line breaks in the header cells of your table. In the screenshot below, the first label has no line breaks, the second has one, and the third has none but is simply wrapping to the next line in the cell. 
    Third way: If the chart inspector has references to the labels, go to the chart (not the table) and edit one of the labels. The inspector will now show text instead of references. Use the first method to add your line breaks.

  • How to display a fixed min and open max Y axis scale on obiee 11g

    Hi,
    I am stuck with an issue.
    Obiee by default is plotting my bar chart with Y axis scale from -50 to 850 with and interval of 100.
    In the graph non of the value is negative of below zero. The graph too plots all the points above 0, even then it starts the Y scale from -50, not sure why?
    I wanted to know whether we can by anyway limit the y axis scale with lower limit to 0 and still keep the upper limit open or undefined.
    Please let me know if any of you have come across such scenarios?
    Thanks

    > I want to plot log(log(y)) vs x. On the y-axis of the graph I need to
    > display 'y', NOT log(y) or log(log(y)). How do I adjust the scale to
    > allow for this?
    >
    > {I do realize that I can plot log(y) vs x and display 'y' by using the
    > Logarithmic scale option.}
    Not being that familiar with the typical labeling on log(log) plots, you
    may be able to do this using two scales. Make a graph that contains two
    scales. One will be plotted against, the other will be just for labeling.
    You can now transform your diagram data, which will change how the mapped
    scale is labeled, but the other scale can show whatever you like in linear
    or log form.
    In otherwords, on the diagram, perform log10 on your data, then display on
    a log scale that is hidden. Make another scale vi
    sible with linear or log
    data. Or perform log10(log10) on your data, display on a hidden linear
    scale.
    I'm not sure how well this will work. If it is insufficient, you can submit
    a feature request on the web site.
    Greg McKaskle

  • How to apply filters for union all report in OBIEE 11g

    Hi All
    Can we apply saved filters to union reports in obiee 11g?
    I am able to apply saved filters for normal reports but not for union reports.
    The catalog pane is blank, when i click on result columns or each criteria.
    The only option i see is to manually create the filters for each criteria, dont i have any choice to use a saved filter for union report?
    Is this a bug or something i am unaware. Please guide me
    Thanks

    Hi manu,
    Filter is created based on subject area.we can't use save filter in any other subject areas.
    now we can use new filter for union reports.
    if Helps please mark as correct.. :)

  • OBIEE 11g  Pie Chart Settings /Axis titles

    Hi,
    In OBIEE 11g, it is not possible to change the Axis titles in a pie chart.
    Does anyone know how to change it in the xml file?
    Any feedback is highly appreciated.
    //Katherine
    Edited by: 1002173 on 2013-apr-24 03:56

    Never heard of Axis in a pie chart. What exactly are you trying to change?

  • FXML - Line break for text-attribute (LABEL)

    Hi!
    How to define a text with a line break for a label in FXML?
    For example, I cant get this to work (\n):
    <Label text="Break\nLine"/> Thanks,
    Jörn

    Hi,
    If you use SceneBuilder Developer Preview 1.1 you will see that SceneBuilder generates this:
       <Label layoutX="266.0" layoutY="172.0" text="Break&#10;Line" />To enter a new line in a text label in SceneBuilder is easy (even though a bit hidden).
    If you hover the mouse over the label text property in the Inspector (right hand side), you will see a little cog menu fading in. If you click on it - you will be able to 'Switch to multi-lines mode' - you can then enter a text with new lines - then save the file and see how it's been handled...
    hope this helps,
    -- daniel

  • Hiding catalog link for a particular user in OBIEE 11g !!

    Hello,
    I have a requirement where I want to hide/disable catalog link at the top (in analytics) for a particular user !!
    This User can access Dashboard.
    This User cannot access Subject areas hence he cannot create analysis
    Let me know if this is possible in OBIEE 11g !! If yes, then how ?

    Hi,
    Steps to implement,
    Login to analytics (http://IP:9704/analytics)--> Administration-->Manage Privileges -->Home and Header ---> here u can set the privileges associated with various components of bi
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10543/intro.htm#BIESC6086
    Thanks
    Deva

  • Formula for x axis labels

    I have a report with one group(CR2008 with .NET). That group has a customized group name field, and the group name is a formula. When I display the group name in the data section of the report, it displays according to the formula.
    I now need to chart two pieces of data - Primary # of Sales and Secondary # of Sales - for that group so I can compare the two # of sales. If I make a chart for the Primary # of Sales, and go to the group tab in the Chart Expert and specify "on change of Group By Value (my grouping), show the sum of the Primary # of Sales", the chart displays as desired, and I see the custom group name (formula) as the X axis label.
    But if I go to the Advanced Layout on the Data tab of the Chart expert and specify the Sum of Primary # of Sales AND Sum of Secondary # of Sales in the Show Values section, the X axis label no longer shows the custom group name; it shows the group value.
    Any ideas for how to get it to show the custom group name when I chart two fields of data?
    Also how to change the x axis orientation to vertical so that morei get  space for labels.
    Thanks in advance!

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Extracting the Logical sql query for the specified report  in OBIEE 11g

    Hi ,
    I want to extract the logical SQL Query for the Particular report in OBIEE 11.1.1.5.
    Any pointers related to this will be very helpful.
    Thanks,
    Sonali

    for a try please add Logical sql view to ur report it will dispaly the Logical sql for that Report..
    Hope it will helps you.

Maybe you are looking for

  • Amazon mp3 app unable to remove?

    So, I was attempting to download this app to test it out when I saw user reviews stating you can't uninstall the app after download. I decided not to take the dive in the Amazon lava pool. Then I got thinking, if rumors are true about Verizon updates

  • MSS Personal data iview

    HI Experts, I have to add phone field in personal data iview. I am using EP7.0 Portal ,and this is a webdynrpo based iview,I wanted to know whether there is any hidden field for phone or we need to add this field or is there any configuration require

  • Re: No display, MSI Z97 PC Mate (New Build)

    from the lower screen shot it looks like the drive is empty! how have you formatted the disk and what format did you chose? is it in a USB 2.0 slot?

  • JKI VI Package Manager missing from tools menu?

    Hi all, I have recently updated JKI VIPM to version 2012.0.0 but now find that the application is no longer visible in my LabVIEW 2011 SP1 tools menu.  Has anyone else experienced this problem?

  • I want an Upgrade !!!

    HI guys I just wanted to ask you  I own an HP PAVILION G6 1318 ev with 4gb ram (ideal ) And this cpu amd e2-3000m apu with radeon(tm) hd graphics 1.80ghz its pretty laggy when i play games and i just wanted to know if there is a better cpu to buy and