Possibility of creating combination chart Barchart/Line graph within OBIEE

Hi
Is it possible to create a combination chart within OBIEE as can be done in Excel by changing the chart type on one of the individual series - ie graph multiple series of data as a combination of Barchart & Line series?
Any info appreciated
Thanks & Regards
K

The charting can be as dynamic as you like if you willing to pre-configure the required options.
Simply create as many charts as you want from one request, and use a view selector to allow the user to switch between them.
You can use level based measures and any else you want as seperate columns (all in same request) then chart them accordingly.
Hope this helps

Similar Messages

  • OBIEE Area Chart with Line Graph

    Can you create an Area and Line Graph together in one chart with OBIEE (rather than with the bar graph and line chart combo)??

    Did you mean a Trendline? If that is the case, right click on any of the areas in the area chart and select Trendlines from the context menu.

  • Area chart with line graph combo - Is this possible to create?

    Can you create an area chart and line chart combo? The line bar combo chart doesn't capture what I want.

    hi,
    it is better for 2 different questions,make 2 differents threads...
    You used the 2ond solution(google???),put in the dashboard...html enabled...and check your pdf again.
    Moreover,printing pdf with answer is discouraged...always prefer Xml Publisher.
    Last,there are 2 fst files which configure the *.pdf files , check them,
    http://obiee101.blogspot.com/2008/09/obiee-pdf-controls-fst-files.html
    hope i helped....
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

  • Interactive Bar/pie chart and line graph, data from excel/text file -urgent

    Hi,
    I have a huge data in excell sheet which keeps updating every month. Data basically consists of service provider and there respective subscribers from various regions of the country over the years. The requirement is to give the viewers an interactive page where in they can make various combinations and can compare, cross examine data according to thier choice.
    We want the pie chart / bar graph or line graph to be created on the fly according to the combination made by the user.
    The site is hosted on a red hat linux server. how can a connection to the excel spreadsheet be made or is it possible to read from the text file if the entire data is exported to a text file.
    Is there any ready made tool/code available which can be customised according to the need.
    Thanx in advance
    Regards
    Prakash

    I certainly wouldn't pay for the graphing package at the previous link. check out http://www.object-refinery.com/jfreechart/ for a free, open-source, much better looking graphing package.

  • Stacked Bar chart and Line graphs

    I have a report in Crystal which has stacked bar chart and a line graph together in one report.
    Is it possible to do the same thing in WebI . Can anybody share the experience.

    Today you can only have a simple bar (not stacked) and line chart in Web Intelligence.  We are looking to improve charts in the future.  In the meantime you can look into the masher from the labs...

  • Is it possible to create column chart in WAD

    Hi All,
    I would like to know if it is possible to create WAD -column chart  in BI
    Regards,
    Sampda.

    Though Arun has almost answered your query, gues this might also be helpful to you.
    You can create and here is how to do it SAP recommended way:
    http://help.sap.com/saphelp_nw04s/helpdata/en/c9/08533b97037963e10000000a114084/content.htm
    Cheers.
    Ray.

  • Combined bar and line graph: need some advice

    Hi,
    I'm builing a small app for a customer. The basic functionality is showing the bar chart and the line (see the figure attached), and now I want to show
    the area above the line in another color. This is the cost saving for the customer. Can I do this? And how would you suggest me to achieve this!
    Can I also show the big dot as seen in the figure?
    Thanks!

    _Faust wrote:
    Hi,
    I'm builing a small app for a customer. The basic functionality is showing the bar chart and the line (see the figure attached), and now I want to show
    the area above the line in another color. This is the cost saving for the customer. Can I do this? And how would you suggest me to achieve this!
    Can I also show the big dot as seen in the figure?
    Thanks!
    Although I believe that graph would be possible by banging on the graphs hard enough, but it would pretty easy to render that image using a picture control since rectangles, lines, text, and circles are supported.
    The link I included above will take you to a thread devoted to Picture related threads.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to create a trailing 6 months graph in OBIEE dashboard?

    Hi,
    I'm new to oracle and currently learning new OBIEE application where I'm task with creating a graph trailing 6 months.  I did some research and found a solution in this forum but given that my background is not IT so those codes to me is like another language.  Basically I need to create a graph where users would select a prompt month like June-14, the graph would should show data for the prior month from May backward to Jan.  In my report, I would have 4 column like fiscal year, month, sales, and supplier.
    I know how to create the report to pull the data but I'm struggling with where/how to set up filter and prompt and where to apply the appropriate SQL query.  Please help!  Step by Step instruction would be very helpful.
    Thanks you so much in advance.

    Hi,
    That filter will not help you ...
    You said : users would select a prompt month like June-14
    The previous formula work on the current real date, not on a prompt (and why to cast CURRENT_DATE as date? It's a date! And again: DAYOFMONTH(CURRENT_MONTH * (-1) + 1 isn't it easier to just write 1 - DAYOFMONTH(CURRENT_MONTH) ? ...).
    Coming back to your question .... by the way ...
    I'm new to oracle and currently learning new OBIEE application and my background is not IT so those codes to me is like another language
    I would highly suggest you follow a proper training and/or a good book (please avoid the guy advertising his DVD OBIEE training for few $$) at least you start with good basis on OBIEE and BI / data analysis and reporting in general.
    Let's start by your prompt: when you say a month like June-14, do you mean that you really have a month column in your subject area with values like June-14? Do you also have a proper date next to it or anything more "numeric" ? Because otherwise you will need to translate textual months names into real date to be able to easily calculate the previous X months.

  • Creating a multi series line chart with different data providers

    I have 3 data providers of the same structure i.e ArrayCollection of DataElement and want to use them to create a multiseries line chart. I do not have just 1 dataProvider that can be used but 3 different data providers of the same structure that i want to use each for different series.
    [Bindable] private var orangeSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 101000, month: new Date( '01/01/2008' ) },
                            { sales: 960000, month: new Date( '02/01/2008' ) },
                            { sales: 475000, month: new Date( '03/01/2008' ) },
                            { sales: 425000, month: new Date( '04/01/2008' ) }
                [Bindable] private var appleSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 991000, month: new Date( '01/01/2008' ) },
                            { sales: 140000, month: new Date( '02/01/2008' ) },
                            { sales: 565000, month: new Date( '03/01/2008' ) },
                            { sales: 255000, month: new Date( '04/01/2008' ) }
                [Bindable] private var bananaSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 891000, month: new Date( '01/01/2008' ) },
                            { sales: 147560, month: new Date( '02/01/2008' ) },
                            { sales: 295000, month: new Date( '03/01/2008' ) },
                            { sales: 574000, month: new Date( '04/01/2008' ) }
    I want to create a line chart with orangeSales, appleSales and bananaSales as three different lines on the chart for different dates specified.
    <mx:ColumnChart showDataTips="true" >
            <mx:horizontalAxis>
                <mx:CategoryAxis
                    dataProvider="{orangeSales}"
                    categoryField="month"
                    />
            </mx:horizontalAxis>
            <mx:series>
                <mx:LineSeries displayName="OrangeSales" yField="sales" xField="month" dataProvider="{orangeSales}"/>
                <mx:LineSeries displayName="AppleSales" yField="sales" xField="month" dataProvider="{appleSales}"/>
                <mx:LineSeries displayName="BananaSales" yField="sales" xField="month" dataProvider="{bananaSales}"/>
            </mx:series>
    </mx:ColumnChart>
    Please help!

    Sorry for the confusion. Actually I must be doing some thing wrong like using ColumnChart to display a line chart or something like that.
    I have now realized that a multi series line chart can be built by having a different data provider for each of the LineSeries object.
    So the code below would create a multi series line graph :
    [Bindable] private var orangeSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 101000, month: new Date( '01/01/2008' ) },
                            { sales: 960000, month: new Date( '02/01/2008' ) },
                            { sales: 475000, month: new Date( '03/01/2008' ) },
                            { sales: 425000, month: new Date( '04/01/2008' ) }
                [Bindable] private var appleSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 991000, month: new Date( '01/01/2008' ) },
                            { sales: 140000, month: new Date( '02/01/2008' ) },
                            { sales: 565000, month: new Date( '03/01/2008' ) },
                            { sales: 255000, month: new Date( '04/01/2008' ) }
                [Bindable] private var bananaSales : ArrayCollection =
                    new ArrayCollection(
                        [ { sales: 891000, month: new Date( '01/01/2008' ) },
                            { sales: 147560, month: new Date( '02/01/2008' ) },
                            { sales: 295000, month: new Date( '03/01/2008' ) },
                            { sales: 574000, month: new Date( '04/01/2008' ) }
    I want to create a line chart with orangeSales, appleSales and bananaSales as three different lines on the chart for different dates specified.
    <mx:ColumnChart showDataTips="true" >
            <mx:horizontalAxis>
                <mx:CategoryAxis
                    dataProvider="{orangeSales}"
                    categoryField="month"
                    />
            </mx:horizontalAxis>
            <mx:series>
                <mx:LineSeries displayName="OrangeSales" yField="sales" xField="month" dataProvider="{orangeSales}"/>
                <mx:LineSeries displayName="AppleSales" yField="sales" xField="month" dataProvider="{appleSales}"/>
                <mx:LineSeries displayName="BananaSales" yField="sales" xField="month" dataProvider="{bananaSales}"/>
            </mx:series>
    </mx:ColumnChart>

  • Dynamic Combination Chart

    I am using Report Builder 10.1.2.0.2 to generate an RDF that will be deployed to the application server via the rwservlet.
    I need to create multiple combination charts (about 20). Is it possible to create the charts dynamically based on a query (repeating frame style)? Or do I have to create each graph manually (fixed)?
    Any help would be greatly appreciated.
    Thank you,
    Roger

    Hi,
    Can you please mention it clearly when exactly the data changes  in your chart.
    In which properties you have bined the excel cell. Test it manually by changing value in the excel binded cell and check wheather the changes are happening or not.
    Take and spreadsheet and bind it to MAX fucntion cell and Chart Array values and record the changes during run time.
    It may help you to record the changes happening during runtime.
    Through this you may find a solution for your problem,
    If still the problem pertains please provide the Xcelsius SP version and fix pack
    To get such details
    In Xcelsius you can go to Help menu
    Regards,
    AnjaniKumar C.A.

  • How to create this chart in Numbers?

    The sample chart such as following web site:
    http://gallery.mac.com/chouwenpo#100008/-E5-9C-96-E7-89-87-203&bgcolor=black
    I want to create this chart by "line+symbol chart".
    The x-axis need to be an "interval".
    Please, help me if you know how to do this.
    Thank you a lot.
    wenpo

    I do appreciate your kindness reply.
    Please let me repost my question and express my concern again
    I look forward from you guys.^^ I do need your help!
    Thanks again.
    <<Question repost>>
    for example:
    Assume we have 10 (x, y) pairs as below:
    (10,10), (12,23), (47,9), (63,24), (88,100), (150,41) ,(155,166), (188,2), (198,58) and (500,200). Each (x,y) pair is a single point in the graph.
    If we use Scatter chart to handle these data, the output graph is fine but not suitable for me to use.
    I wish there will be a trend line between two of each independent points of Scatter graph, and obtain a graph just like the output graph as used in Line chart (line+symbol).
    That is, in Line chart, the values of x-axis(with equal-width intervals) are categorical; however, my data is ordinal value or continuous value (like Time, Concentration...etc.). I wish this software has the ability to show the interaction between each points.
    Message was edited by: wenpo

  • Simple line graph problem

    Hi there,
    I want to create a very simple line graph, containing 1 line. Therefore i create a Graph.LINE_VERT_ABS type Graph and add the data using myGraph.setLocalRelationalData(al ArrayList). This arraylist contains values in the form of
    setname jan 12.2
    setname feb 14.5
    setname march 8.1
    etc
    When i do this, I get the errormessage: "The data has an insufficient number of columns. This graph type requires at least 2 columns of data. The data provided has one column.".
    When i add another dummy value to the arraylist:
    dummy dummya 1
    dummy dummyb 2
    the graph displays correctly, but only with a additional line for the dummy values, also in the Legend.
    What am i doing wrong. Surely it is possible to display just one line in the Graph??
    Any help is appreciated.
    Linda

    In the arraylist, setname identifies a column. By default, columns are plotted as groups, or different points along the horizontal axis. In order to have a line or area graph, you need two groups. The data that you are passing has 1 group and 3 series. You should pass it as follows:
    jan setname 12.2
    feb setname 14.5
    march setname 8.1
    etc.
    Passing data like this will give you three groups (jan, feb, march) and one series (setname).
    By the way, what version of BI Beans are you using and how did find out about setLocalRelationalData? That API was never publicly released. It was replaced by setTabularData (same method renamed) and exposed in 9.0.3.
    BI Beans Product Management

  • Apex 4 Combined chart with multiple y axis

    Hi
    I am trying to create a Combined Line chart & Bar chart using Multiple y-axis
    ie Line chart using one y-axis and Bar chart using another y-axis.
    In Apex 4 so for i am able to to create Combined chart by adding 2 series.. but i am unable to specify y-axis for each.
    Can any one help me how i can do this.
    Thanks
    Prabahar

    I managed to do it.
    Below I will post a working example of sql code and chart XML:
    SQL CODE:
    select NULL LINK,
    trunc(AUTH.AUTHDATETIME) "AUTHDATETIME",
    count(AUTH.AUTHDATETIME) "{n:Computer;t:Spline;y:ex}",
    sum(AUTH.amount) "{n:Video;t:Spline}"
    FROM schema.AUTH
    group by trunc(AUTH.AUTHDATETIME)
    order by 2 desc
    <?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
    <anychart>
    <settings>
    <animation enabled="false"/>
    <no_data show_waiting_animation="False">
    <label>
    <text></text>
    <font family="Verdana" bold="yes" size="10"/>
    </label>
    </no_data>
    </settings>
    <margin left="0" top="" right="0" bottom="0" />
    <charts>
    <chart plot_type="CategorizedVertical" name="chart_1269902745139534">
    <chart_settings>
    <title enabled="False" />
    <chart_background>
    <fill type="Solid" color="0xffffff" opacity="0" />
    <border enabled="false"/>
    <corners type="Square"/>
    </chart_background>
    <data_plot_background>
    </data_plot_background>
    <axes>
    <y_axis >
    <scale type="Logarithmic" minimum="1" log_base="5"/>
                   <title><text>Video Sales</text></title>
                   <labels><format>{%Value}{numDecimals:0}</format></labels>
    </y_axis>
    <x_axis>
    <scale mode="Normal" />
    <title enabled="false"/>
    <labels enabled="true" position="Outside">
    <font family="Tahoma" size="10" color="0x000000" />
    <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
    </labels>
    <major_grid enabled="True" interlaced="false">
    <line color="Black" />
    </major_grid>
    <minor_grid enabled="True">
    </minor_grid>
    </x_axis>
              <extra>
    <y_axis name="ex">
    <title><text>Computer Sales</text></title>
    <labels><format>{%Value}{numDecimals:0}</format></labels>
    </y_axis>
    </extra>
    </axes>
    </chart_settings>
    <data_plot_settings enable_3d_mode="false" >
    <line_series>
    <tooltip_settings enabled="true">
    <format><![CDATA[{%Name}{enabled:False} - {%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
    <font family="Tahoma" size="10" color="0x000000" />
    <position anchor="Float" valign="Top" padding="10" />
    </tooltip_settings>
    <label_settings enabled="true" mode="Outside" multi_line_align="Center">
    <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
    <background enabled="false"/>
    <font family="Arial" size="10" color="0x000000" />
    </label_settings>
    <line_style>
                             <line enabled="true" thickness="1" opacity="1" />
    </line_style>
    <marker_settings enabled="True" >
    <marker type="Circle" />
    </marker_settings>
    </line_series>
    </data_plot_settings>
    #DATA#
    </chart>
    </charts>
    </anychart>
    Originally I used as an example below resource:
    http://anychart.apex-evangelists.com/pls/apex/f?p=755:46:0::NO:46::
    Thanks.
    Edited by: Jopa on 23.07.2010 1:07
    Edited by: Jopa on 23.07.2010 1:08

  • Unable to create PO with multiple line items through LSMW-BAPI method

    Hi All,
    I have a requirement of creating PO through LSMW. I can't use LSMW standard batch input program since there are some fileds not available and also it has many limitations. I'm using LSMW-BAPI method ( Business object BUS2012) which create IDOC and uses BAPI_PO_CREATE1 to ultimately post the PO in the system. I am trying to create PO from a single file which contains both Header and Item data.
    Now my problem is that everytime PO is being created with Single line item only. Everytime I am giving multiple item data in the source file LSMW is preparing multiple IDOCs for multiple line items. As per my understanding this is happenng since header and item is in the same hierarchy level of IDOC type PORDCR102 and the control record is inserted for every line item in the source file.
    It seems that through LSMW-BAPI  it is not possible to create PO with multiple line items. Can anybody provide some input regarding this? Thanks in advance.
    BR,
    Atanu Mukherjee

    Solved by myself.
    Earlier the problem was that LSMW was not being able to recognize items under same header. It was creating new IDOCs every time it gets a new item. To enable this we need to create two structure HEADERDATA and ITEMDATA.  Two additional identifier fields with identifier value 'H' and 'I' should be added in these two structures respectively. Then we need one sequential file with the identifiers field followed by the header and Item data. Example:
    H~header data
    I~item data
    I~item data 
    This would help the standard program to understand what are the items under same header and ultimately create PO with multiple line items.
    BR,
    Atanu Mukherjee

  • Represent NULL point in Line Graph.

    Hi;
          I am using Simple series to supply data to Graph type Line. I have a requirement to represent null data point in Line graph, where marker point for the NULL data point shouldn't be present, instead a straight line should come in between the valid points. Currently if the Data value is null, marker point is coming to 0.
    How can i solve this problem using Simple Series?
    I am using NW7.0; SP 9
    vinod.

    Please refer:
    http://www.sapdesignguild.org/resources/diagram_guidelines/index.html
    Reference Point:
         Chart Type Line Graph
             Do not Use it if the X axis has non-numeric values..
    vinod.

Maybe you are looking for

  • Update after Yosemite

    After updating to Yosemite iphoto dose not work but when I try to update it I get this "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled." iPhoto came with my comput

  • Importance of channel in the Agreement tab

    In the B2B document they mentioned as below Listening channels are not part of an agreement. A listening channel never participates in any agreement. So i am able to see channel selection in the agreement tab so what is the use ??? is it contradictor

  • Dynamic Chart values on a time line (like a ticker)

    Hello experts, can you give me a hint on how to implement a dynamic line chart (one whose values are to be updated every second via a Timer). The timeline is fixed. so the chart should start empty, fill up to the predefined range and then starts shif

  • Error in Jpanel add function in a loop...^Urgent^

    I have higlighted the error part as below code, i would appreciate if you can help ....thank you Jpanel p1 p1.removeAll();                                     p1.add(t_label);                   p1.add(menuBar);                       try{             

  • Windows 7 - Oracle 10.2.0.5 Database Client Installation (32bit)

    Where can I get this? I tried installing the 10.2.0.3 client, and the 10.2.0.5 patchset - but that got me nowhere. It seems like the patchset is for the DB server, not the client (unless there is something I am missing due to obtuseness.). Is there a