Bubble chart title

Hi,
i want to split the title into 2 lines for Bubble chart in obiee 11g. how can i do that.
Thanks

Hi Vineeth,
its working. But i have a view selector. under that i have 2 views. one is bubble chart. another is table.
How can i put this in between select view and chart
Edited by: 806756 on Feb 19, 2013 10:20 PM

Similar Messages

  • Adding custom axis titles for Bubble Chart

    How to add custom axis titles (for each group of axis values) as shown in the attached figure to a bubble chart ?
    - Sen

    I'm trying to do essentially the same thing with a LineChart and I think I've got part of it figured out.
    I've subclassed CategoryAxis and overridden reduceLabels to return only certain labels (the "group" labels). Then I create a new axis by adding a LineSeries to the chart's <series> element with the new axis within the LineSeries. Then I have an AxisRenderer in the chart's horizontalAxisRenderers tag that refers to the new axis from within the LineSeries.
    Subclassed axis:
        public class MonthCategoryAxis extends CategoryAxis
            public function MonthCategoryAxis()
                super();
            override public function reduceLabels(intervalStart:AxisLabel, intervalEnd:AxisLabel):AxisLabelSet
                var currentLabels:AxisLabelSet = this.getLabels(0); // Param is ignored by super class
                var newLabels:Array = []; // Labels to keep
                var label:AxisLabel;
                var previousLabel:AxisLabel;
                for (var i:int = 0; i < currentLabels.labels.length; i++)
                    label = currentLabels.labels[i];
                    if (i == 0) // Keep the first label
                        newLabels.push(label);
                    else if (label.value.month != previousLabel.value.month)
                        // Only keep a label if the previous label has a different month
                        newLabels.push(label);
                    previousLabel = label;
                // Return a new AxisLabelSet with just the labels we want
                var newLabelSet:AxisLabelSet = new AxisLabelSet();
                newLabelSet.labels = newLabels;
                return newLabelSet;
    New series to create the subclassed axis in.
                <mx:LineSeries>
                    <mx:horizontalAxis>
                        <charts:MonthCategoryAxis id="MonthAxis" labelFunction="calendarMonthAxisLabelFunction"/>
                    </mx:horizontalAxis>
                </mx:LineSeries>
    The AxisRenderer. canDropLabels must be "true".
                <mx:AxisRenderer axis="{MonthAxis}" canDropLabels="true" showLine="false" tickPlacement="none">
                    <mx:labelRenderer>
                        <mx:Component>
                                <mx:Label width="100%">
                                <mx:Script>
                                    <![CDATA[
                                    override public function set data(axisLabel:Object):void
                                        this.text = outerDocument.getMonthLabel(axisLabel.value);
                                    ]]>
                                </mx:Script>
                                </mx:Label>
                        </mx:Component>
                    </mx:labelRenderer>
                </mx:AxisRenderer>

  • How to toggle bubble chart Item's visibility?

    I have a bubble chart. I need to toggle the visibility of a particular bubbleSeriesItem (specific data point) ?
    Thanks,
    Tanu

    Hi Tanu,
    You can try this..provided you only have only positive values on y-axis.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:Script>
            <![CDATA[       
            import mx.collections.ArrayCollection;
            [Bindable]
            private var expensesAC:ArrayCollection = new ArrayCollection( [
                { Month: "Jan", Profit: 2000, Expenses: 1500, Amount: 450 },
                { Month: "Feb", Profit: 1000, Expenses: 200, Amount: 600 },
                { Month: "Mar", Profit: 1500, Expenses: 500, Amount: 300 },
                { Month: "Apr", Profit: 1800, Expenses: 1200, Amount: 900 },
                { Month: "May", Profit: 2400, Expenses: 575, Amount: 500 },
                { Month: "Jun", Profit: 2400, Expenses: 120, Amount: 1500 } ]);
            //Say if I want to hide items for May and Jun    
            private function hidePoints():void
             for each(var obj:Object in expensesAC)
              if(obj.Month == "May" || obj.Month == "Jun")
               if(parseInt(obj.Expenses) > 0)
                obj.Expenses = -obj.Expenses;
             expensesAC.refresh();
            private function showPoints():void
             for each(var obj:Object in expensesAC)
              if(obj.Month == "May" || obj.Month == "Jun")
               if(parseInt(obj.Expenses) < 0)
                obj.Expenses = -obj.Expenses;
             expensesAC.refresh();
            ]]>
        </mx:Script>
    <mx:HBox>
      <mx:Button id="btnHide" label="Hide Points" click="hidePoints()" />
      <mx:Button id="btnShow" label="Show Points" click="showPoints()"/>
    </mx:HBox>
        <!-- Define custom color and line style for the bubbles. -->
        <mx:SolidColor id="sc1" color="blue" alpha=".3"/>
        <mx:Stroke id="stroke1" color="blue" weight="1"/>
        <mx:Panel title="BubbleChart Sample Example" height="100%" width="100%">
            <mx:BubbleChart id="bubblechart"
                height="100%" width="100%"
                paddingRight="5" paddingLeft="5"
                showDataTips="true" maxRadius="20"
                dataProvider="{expensesAC}">
                <mx:verticalAxis>
        <mx:LinearAxis minimum="0" />
       </mx:verticalAxis>
                <mx:series>
                    <mx:BubbleSeries
                        displayName="Profit/Expenses/Amount"
                        xField="Profit"
                        yField="Expenses"
                        radiusField="Amount"
                        fill="{sc1}"
                        stroke="{stroke1}"
                    />
                </mx:series>           
            </mx:BubbleChart>           
            <mx:Legend dataProvider="{bubblechart}"/>           
        </mx:Panel>
    </mx:Application>
    Thanks,
    Bhasker Chari

  • Portfolio (Bubble) Chart Capability

    Greetings,
    I am trying to create a bubble chart using WAD 3.5, the Portfolio chart type seems to be the most appropriate, but I can not figure out how to get the chart to show the metrics per my specification.
    X-Axis - Change in Days
    Y-Axis - Change in Value
    Z-Axis (Size) - Total Value
    Bubble Color - Region
    Individual Bubble - Opportunity
    The results should be a bubble chart with 4 different series, each series containing a datapoint representing an opportunity.
    The bubbles are sized based on the total value of the opportunity and are positioned in the chart based on the shift in days (x axis) and value (y axis) from a previous time period.
    The data is not a problem, I have a query with all the relevant characteristics and key figures.  The issue is getting the chart to properly chart these items.  The closest I can get is with:
    Row Fields: Region
    Column Fields: Opportunity, Key Figure Structure
    When I do this, I do get one 'series' for each region, but all the bubbles for each series get placed at the X-Axis value for the first opportunity.  Other attempts have resulted in creation of a series for each opportunity.
    Thanks.

    The frustrating part of this - is that the "Chart Wizard" view in Web App Designer shows exactly this scenario when previewing the Portfolio chart design - a few color-coded series, each containing multiple datapoints, with varying bubble sizes places on the chart based on key figures on the X and Y axes.  I can not figure out how to get any query to replicate this.

  • Is there a way to draw gridlines at a specific point on a bubble chart?

    I'm using Xcelsius 4.5 and (trying to) creating a bubble chart.  I am using static min/max values for the x and y axes, but rather than drawing the gridlines in 1 or 2 divisions (i.e. the midpoint), I want to draw a grid line (both x and y) at a specific point -- is there any way to designate this point in Xcelsius?

    I figured it out - I just adjusted my formula to draw the min/max such that my intersection is always the midpoint

  • How to use the region parameter of main report for subreport chart titles?

    I am using Crystal Reports 11.
    I create 1 main report with 10 sub-reports that contain cross-tabs & charts. The main report has a parameter regarding 3 different areas: region1, region2, and region3.
    I use the method of adding the u2018regionu2019 parameter of main report to the selection formula of the sub-reports. So, I can select 'region' from main report to controll outputs in sub-reports by region.
    I use formulas for chart titles, e.g.:
    Select {Product Code}
    Case 'a111':
      u2018Region1 u2013 a111 Counts'
    Case u2018b222u2019:
      u2018Region1 u2013 b222 Counts'
    u2026
    u2026
    Default:
    u2026
    Since I pass the u2018regionu2019 parameter of main report to sub-reports, I have to change chart titles dynamically based on the region I select.
    How can I use the region parameter from main report in the formulas to get chart titles dynamically?
    Thank you in advance.

    Thank you.
    I am not using Chart Title with "Chart Expert".
    I am using a formula for chart titles, e.g.:
    Select {Product Code}
    Case 'a111':
      u2018Region1 u2013 a111 Counts'
    Case u2018b222u2019:
      u2018Region1 u2013 b222 Counts'
    u2026
    u2026
    Default:
    u2026
    I drag this formula above the charts and it looks like a dynamic title. So, for product a111, the chart title would be "Region1 u2013 a111 Counts"; for product b222, the chart title would be "Region1 u2013 b222" Counts; and so on ...
    Because I pass the region parameter from master report to subreport, I want to change the region part of the chart titles dynamically.
    For example,
    when select Region1, the chart titles should be: "Region1 u2013 a111 Counts"; "Region1 u2013 b222"; ...
    when select Region2, the chart titles should be: "Region2 u2013 a111 Counts"; "Region2 u2013 b222"; ...
    I want to add the region parameter into the tiltle formula.
    How should I do?

  • How to change the colors for individual bubbles in a bubble chart?

    I have a report where in a bubble chart needs to be shown with different colors for bubbles available in the chart. I cant find any option to select individual bubbles and format the color options.
    Any guidance or suggestions solving this would be much appreciated.
    Thanks,
    Vinay

    Thanks JB for your reply, I see in format chart data there is are two sections:
    1. Positional
    2. Conditional
    In Positional - I have the type and color changes for the bubbles but if I change any color in that all the bubbles are simultaneously getting the same color code.
    Not sure if there is any other setting. Please share me your thoughts on this.
    Thanks again

  • Bubble chart - problem with overlaying bubble

    Hi all,
    I have problem with bubble chart. Two bubbles are overlaying, that wouldn't be a problem, but one of this two bubbles is bigger and other is smaller. This smaller is beneath bigger. Why smaller is not on top of bigger? How to solve this?
    Thanks

    Hi Andrew,
    We have experienced similar problems, however they usually were with much larger models (10+ tabs, 10+ components in each).
    If you're using a lot of data or more intensive processes/components, that may have caused the problem to express earlier, though. 
    The best recommendation is to keep Tabset use shallow:  don't embed containers within containers, not too many components in a tab, not too many tabs.

  • Bubble Chart

    Hi!
    Is there any way to control the bubble size in a chart? I would like to make the bubbles smaller because they're too close. The actual size makes a bubble occupies a piece of another bubble.
    I have changed the value of bubblePercentSize in XML (Advanced tab), but it didn't change anything in my report.
    Thanks.

    translate the cartesian x/y coordinates to the canvas . . . When the chart graphs the point, it is set to the proper location unlike the behavior in BubbleChart.For some reason the bubble chart seems to require that the node you set for your data extends from Region. By default BubbleChart uses a StackPane to represent data points. If you just use a Shape like a Circle, it will not get it's layout adjusted correctly, but if you use (for instance a custom StackPane), it will at least end up in the right place. However, any custom nodes you set for the BubbleChart seemed to be squashed (e.g. they don't retain their original proportion) and I couldn't work out how to override that behaviour, which is why "I couldn't get it to work well".
    Effectively I have the BubbleChart I was looking for by using ScatterChart, go figureNice thinking outside the box. Happy you got your solution.
    Don't hesitate to log an issue at http://javafx-jira.kenai.com/ (you can link back to this forum thread).
    I think others will likely run into the same issues as the chart package receives wider use.

  • Bubble chart in Xcelsius

    Hi,
    I am building a report which uses the below data
    Region______Verticals________calyear____Revenue
    APJ________Banking_________2007_____10
    EmEA______Insurance________2008_____20
    Central______Media___________CAGR____6.8
    I need to have 3 filters for Region, Verticals and calyear
    in the calyear filter I need to show only the values 2007 and 2008 but not CAGR
    on this data I need to build a bubble chart where it takes Revenue values in x axis CAGR in Y axis ,intially the default value for revenue should be 2007 on the chart and in the filter
    How do I need to arrange the data in excel for building this report
    Please help me out

    For the filter, you just need to exclude the row containing CAGR from the filter's source data.  However the data set you've provided is somewhat confusing since the value of CAGR under your "calyear" column does not actually represent a numerical year.  This might be an issue with the bubble chart since the bubble chart represents 3 dimensions that have to be numeric.
    Perhaps you can use a line chart and have CAGR as the Y axis label.  Make the plot series appear as bubbles and remove the connecting lines in the appearance settings.

  • Bubble chart color

    Hi, just wondering if anyone knew how i can change the color
    of a bubble in the flex bubble chart when the mouse moves over?
    thanks

    done it! selectionMode needs to be set to single.
    however anyone know how i can use another color for selection
    mode, the its default is grey.

  • Bubble chart overlapping

    Hi,
    Currently, the small bubbles are behind the big bubble in the Bubble chart as per attached.
    Please may I know how to make the small bubbles in front  the big bubble in the Bubble chart.
    Thanks.

    Have a look here:
    http://obiee101.blogspot.com/2008/01/obiee-xy-and-data-in-mouse-over-label.html
    regards
    John
    http://obiee101.blogspot.com

  • Bubble chart in OBIEE 10g

    Is there any way to increase the bubble size of bubble chart in obiee 10g? Like whether we can use javascript or HTML Code to achieve it?

    Hi,
    Thanks for reply.
    But I cannot understand your point. My requirement is something different. In the X axis I have project_number and y axis I have measures like budget,commitment & incurred_cost. Now the vertical chart gives me the summarize view. Now for a particualr project say AA, I can see three vertical bars showing budget,commitment & incurred_cost. Now the requirement is if I click on budget bar it will popup a new window showing related details of budget which is a different report, if click on commitment bar it will open commitment report in another window and so on.
    I am not able to implement this like multiple navigation from a bar chart.
    Can you please help on how to do this in OBIEE 10g.
    Thanks
    Titas

  • Bubble chart 11g

    i need to remove the thick lines in bubble chart view in obiee11.1.1.6.0
    how can i do this
    can any one sugg
    bethamsetty.
    Edited by: 961992 on Oct 29, 2012 10:54 PM

    Can you mark the below post as correct at my suggestion?
    pivot table issue
    Also send me a screenshot to my email for the same where you want to remove..

  • Bubble chart settings

    Hi ,
    I am trying to build the bubble chart as silimar  in the  below link
    http://it.usaspending.gov/?q=content/analysis
    when I click on any of the bubble I can see the round circle  & a textt around the bubble how can this be done.Please let me known
    Regards
    Sirisha

    Hi Sirisha
    Although this is a Flex based chart on the website it is not an Xcelsius dashboard so this formatting cannot be done.
    Regards
    [Charles|http://www.reportex.co.uk/xc_waterfallchart.html]

Maybe you are looking for

  • Broken image in case of transport via NWDI

    I have a image file in a webdynpro application. I have placed it in the src -> mimes -> comps -> package folder. When I deploy the application I can see the image on the application. Now when I released the application from development to staging, th

  • How to solve problem After patch 10.2.0.4 applying on owb 10.2.0.1

    HI OWB Gurus, We have recently a patchapplied for oracle 10g . prev version was oracle 10 g r2 10.2.0.1 new version is 10.2.0.4 ( patchset 4) After patch applied at database and owb level there are some problem we are facing like ETL process is very

  • Keynote presentation stuck on iPad

    I used to have a lot of keynote presentations on my iCloud account. I have since deleted them all, but there is still one that shows on my iPad as if it's still updating. I cannot select it to delete it or to anything with it. I have even deleted the

  • PI ( old version called XI ) connectivity with ABAP via Proxy

    Hi Could any body please share with me the sample code for connectivity  of  PI ( old version called XI )  and ABAP  via Proxy for Outbound interface. points will be rewarded for sure Thanks & Regards Meeta

  • [svn:fx-trunk] 7465: Rev 7434 removed an optimization that didn' t work if bounds.x != 0.

    Revision: 7465 Author:   [email protected] Date:     2009-06-01 05:52:48 -0700 (Mon, 01 Jun 2009) Log Message: Rev 7434 removed an optimization that didn't work if bounds.x != 0.  This puts it back in correctly. QA Notes: need to add tests to determi