Stacked Bar and combination chart

Hi Guys,
Does anyone know if it is possible to do a combination chart with a stacked bar chart and line chart.
Thank you
Jess

Jess_C,
There is no predefined chart to solve ur purpose. Try to sync both the charts and use Manul scaling.
Thanks.
Karthik

Similar Messages

  • Combination stacked bar and line chart

    Post Author: jl07
    CA Forum: WebIntelligence Reporting
    Is there a way to create a combination stacked bar and line chart in Web Intelligence XI R2 reports?
    This can be done in Excel and I'm thinking that it should be possible in WebI reports too.
    Thanks

    Post Author: jsanzone
    CA Forum: WebIntelligence Reporting
    JL07:
    This capability is not currently available in WebI (though it is available in Crystal).  Last fall I submitted this as an enhancement request.  It is being tracked under the following enhancement request:  ADAPT00676609 u2013 for the stacked bar chart, line graph issue.

  • Cfchart yaxis scale is wrong when combining bar and line charts

    Hi, I am trying to combine a bar and line chart ti display data.  Everything looks good except that the yaxis scale is off.  I set the scaleMin to 0 but that doesn't help.  Below is my code, the custom XML style and a screen shot.  My ultimate goal is to get the yaxis to start at 0, not -1,000 as is currently the case.  I have combined this data with each set represented as bar charts and do not have this problem.  It must be the combo of bar and line charts together.  Any assistance is most appreciated.
    <cfchart title = "#variables.ReportName# Seedlings Ordered"
        style = "../SO_R_overall.xml"
        Format = "PNG"
        pieSliceStyle = "solid"
        show3D = "no"
        showBorder = "yes"
        showLegend = "yes"
        tipStyle = "MouseOver"
        chartHeight = "#DefinedChartHeight#"
         chartWidth = "#DefinedChartWidth#"
        font="arial"
        fontsize="12"
        fontBold="yes"
        scaleFrom="0">
        <cfchartseries
            type="bar"
            seriesLabel="Goal"
            query="getDivisionGoalsByDivision"
            valueColumn="divisiongoal" 
            itemColumn = "division"
            dataLabelStyle="Value"
            seriesColor="99CCFF"
            >           
        </cfchartseries>   
        <cfchartseries
            type="line"
            seriesLabel="Ordered"
            query="getQTYordered"
            valueColumn="QTYordered" 
            itemColumn = "division"
            dataLabelStyle="Value"
            seriesColor="green"
            >           
        </cfchartseries>
    </cfchart>
    ***************** Custom Chart Style called *****************
    <?xml version="1.0" encoding="UTF-8"?>
    <frameChart is3D="false">
            <frame xDepth="3" yDepth="3" outline="#333333" lightColor="white"
            leftAxisPlacement="Front" rightAxisPlacement="Front" stripColor="#CCCCCC"/>
            <xAxis scaleMin="0">
                <labelStyle isHideOverlapped="false" orientation="Horizontal"/>
                <titleStyle font="Arial-10-bold" isMultiline="true">Division</titleStyle>
            </xAxis>
            <yAxis scaleMin="0">
                <titleStyle font="Arial-10-bold"/>
                <dateTimeStyle majorUnit="Year" minorUnit="Month"/>
                <labelFormat style="Pattern" pattern="#,##0"/>
            </yAxis>        
            <dataLabels font="Arial-10" foreground="black" autoControl="true"/>
            <legend>
                   <![CDATA[ $(rowLabel)  ]]>   
              </legend>
            <decoration style="RoundShadow"/>
            <popup background="#C8FFFFFF" foreground="#333333"/>
            <paint paint="Plain"/>
            <insets left="5" top="5" right="5" bottom="5"/>
    </frameChart>

    I should have also said that I am using 8.0 Pro.
    I want to have the output similar to an e-book.
    The issue (Sept-October of 19xx)
    Then the individual pages (bookmarked)

  • Bar and Pie chart  display with values

    Hi All...
    I want implement the my swing application Bar and Pie chart functionality with vales, If both are disply same veues.
    Thanx to Advance
    Arjun

    www.jfree.org

  • Plot line, bar and pie chart

    Anyone can let me know where can i learn or tutorial on how to plot line, bar and pie chart by using java2D... (no third-party software)....
    thanks in advance.

    Here's a pie chart app I made for an earlier question:
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.geom.*;
    import javax.swing.*;
    public class PieChart {
      public static void main(String[] args) {
        int[] data = {
          18, 95, 102, 87
        PieCharter pie = new PieCharter();
        pie.enterData(data);
        JFrame f = new JFrame("Pie Chart");
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.getContentPane().add(pie);
        f.setSize(400,300);
        f.setLocation(300,300);
        f.setVisible(true);
    class PieCharter extends JPanel {
      int[] data, percents;
      int dataTotal;
      final int
        PAD = 25,
        R_PAD = 5;
      public PieCharter() {
        setBackground(Color.white);
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        Graphics2D g2 = (Graphics2D)g;
        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                            RenderingHints.VALUE_ANTIALIAS_ON);
        Font font = new Font("lucida sans unicode", Font.PLAIN, 16);
        g2.setFont(font);
        FontRenderContext frc = g2.getFontRenderContext();
        int width = getWidth();
        int height = getHeight();
        int cx = width/2;
        int cy = height/2;
        int dia = (int)Math.min(width, height) - 2*PAD;
        g2.draw(new Ellipse2D.Double((width - dia)/2, (height - dia)/2, dia, dia));
        // draw zero datum
        double radians = 0;
        int x = cx + (int)((dia/2) * Math.cos(radians));
        int y = cy - (int)((dia/2) * Math.sin(radians));
        g2.draw(new Line2D.Double(cx, cy, x, y));
        String s;
        int dataWidth, dataHeight, deltaR, rXInc, rYInc;
        for(int i = 0; i < data.length; i++) {
          radians += 2*Math.PI * data/dataTotal;
    x = cx + (int)((dia/2) * Math.cos(radians));
    y = cy - (int)((dia/2) * Math.sin(radians));
    g2.draw(new Line2D.Double(cx, cy, x, y));
    s = String.valueOf(percents[i]) + "%";
    dataWidth = (int)font.getStringBounds(s, frc).getWidth();
    dataHeight = (int)font.getLineMetrics(s, frc).getAscent();
    deltaR = (int)Math.sqrt(dataWidth*dataWidth + dataHeight*dataHeight)/2 + R_PAD;
    rXInc = (int)(deltaR * Math.cos(radians));
    rYInc = (int)(deltaR * Math.sin(radians));
    x += rXInc;
    y -= rYInc;
    x -= dataWidth/2;
    y += dataHeight/2;
    g2.drawString(s, x, y);
    s = String.valueOf(data[i]);
    dataWidth = (int)font.getStringBounds(s, frc).getWidth();
    dataHeight = (int)font.getLineMetrics(s, frc).getAscent();
    x = cx + (int)((dia/4) * Math.cos(radians - 2*Math.PI * data[i]/(2*dataTotal)));
    y = cy - (int)((dia/4) * Math.sin(radians - 2*Math.PI * data[i]/(2*dataTotal)));
    x -= dataWidth/2;
    y += dataHeight/2;
    g2.drawString(s, x, y);
    private void prepareData() {
    for(int i = 0; i < data.length; i++)
    dataTotal += data[i];
    percents = new int[data.length];
    int dataPlus = 0;
    for(int i = 0; i < data.length; i++) {
    dataPlus += data[i];
    percents[i] = Math.round(100 * dataPlus/dataTotal);
    public void enterData(int[] data) {
    this.data = data;
    prepareData();
    repaint();

  • Stacked Column Chart (Total and Combination Chart)

    Hi,
    I tried to find the answer at old posting, but failed to find proper solution.
    So here I go again with the same old problems:
    1. Any method / trick to display total on top of each stacked column ?
        (Label is not an option, since it is static and will not move following the height of the stacked bar).
    2. Any method / trick to combine stacked column chart with line chart ?
        (Overlay is not an option, because I think it is too tedious to play around with color and border)
    Thanks for the bandwidth.
    Regards.
    NB: Are there any XCelcius add-on for those 2 functions ?

    Hi Yudie,
    Can you get compromised in the following way ?
    In the X Axis labels, you can get the values concatenated dynamically and displayed. Example given below:
    2008          2009          2010
    P180         P250         P280
    A172        A263         A265
    Whereas P denotes to Plan and A denodes Actuals.  Above to this labels stacked colum wil be there as usual.
    Consider and revert, in case you need any more clarification on this.
    Keep posting.
    With best wishes
    BaaRaa.
    Edited by: Baskar Rajagopalan on Feb 23, 2011 3:36 PM

  • How to create stacked bar and standard bar on same graph

    Can OBIEE can both Stacked and Standard bar graph on the same analysis by using Line-Bar graph type? For example, I have four measure: Target revenue, Revenue, Billed Quantity, and Target Quantity. I would like to create an analysis that includes all these four measure. On the same graph, I would like to use Stacked subtype for Target revenue and Revenue, use standard subtype for Billed quantity and use line for Target quantity. I tried, but could not find any way to put stacked subtype and standard subtype on the same graph. Do you know if this feature is available from OBIEE?

    I tried to do this and was a bit successful. I used the paint catalog. Created a a request with 6 columns assuming units and dollars be stacked and Year ago units to be a line:
    Brand Units Dollars 0 Year_Ago_units 1
    Added a new request (Combined with similar request and selected paint subject area): Now in this request my columns are:
    Brand 0 0 Year_Ago_Dollars Year_Ago_units 2
    Assuming Year_Ago_Dollars be standard in your case.
    Created a chart view with brand and 1 on x axis and Units, Dollars, Year_Ago_Dollars on y axis and line as Year_Ago_units.
    Now able to see what I am expecting. May be you need to tweak a bit more according to your requirement.
    Let me know if this is of any help!
    Thanks.
    Edited by: Venkata on Sep 30, 2010 12:11 PM

  • Stacked bars and negatives

    hello all,
    I'm having an issue with stacked bars.
    When a value in negative it actually treats it as a positive when drawing the graph!
    As an example:
    1
    2
    5
    -4
    Will bring the bar up to 12 instead of 4.
    Any ideas?
    Thanks,

    I usually put a 30sec black slug after the tone and bars. Any idea how to do that? I can insert a gap ok but can't seem to set it's end point to 30sec duration.
    Ooops - sorry Frank - I went to Mark's Rippletraining site and thought it was he who'd posted the link . Thanks for that pointer! Looks like an interesting resource.

  • 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?

  • Free Form Template and Combining Chart Values during Runtim

    Hi Guys,
    Need your expertise on this.  We received some unreasonable request for the following:
    1. Free Form Template DURING Runtime
    - moving charts from one place to another by dragging them from one place to another during runtime
    2. Combining of Chart values during Runtime
    -to be able to mash-up 2 different charts during runtime.  For example, dragging a chart to another chart
    would result to a combined-value of chart.  For instance, you have a Sales Chart and a Production Chart,
    if and when Sales Chart is dragged and placed on top of Production Chart then it would mash-up the values
    and will produce only one chart.
    Is this even possible?
    Hope you guys can help.
    Kind Regards and Many Thanks,
    Mark

    Hi Mark
    1. Free form template is not possible with current version of Dashboard Designer.  You may use the option of Dynamic Visibility to simulate this.  But this might not serve your requirement 100 %.
    2. Your requirement of mixing up chart just by dragging and droping on another is coming under Designing part.  For designing we need software, in my point of view.  Xcelsius is a Tool to generate required output in various formats.  Here we need to finalise the output such as chart type/ data to be displayed/ format to be displayed, etc and while viewing we may play with data but not with objects other than dynamic visibility.
    Hope this clarifies.
    With best wishes
    BaaRaa.

  • Drilldown bar and pie charts

    I am looking for charts with drilldown feature. I need to drilldown to another chart or a report.
    can you please point me to any articles doing this from scratch? I looked the sample packaged application with charts but it does not have drilldown links,.

    For all charts, the first column "link" is what you're interested in
    The syntax for the select statement of a chart is:
    SELECT link, label, value FROM   ...
    Where:
    link is a URL. This URL will be called if the user clicks on the that point on the resulting chart.
    http://docs.oracle.com/cd/E11882_01/appdev.112/e11945/bar_chart.htm#BEHGDBBE
    unfortunately no examples here, but check inline help for expected SQL in charts. Just define a URL for your drill down destination.

  • What is the difference between bar and column charts

    To me they are the same. When should I use one of the two,
    but another?

    "glen08" <[email protected]> wrote in
    message
    news:ghvjov$sgi$[email protected]..
    > To me they are the same. When should I use one of the
    two, but another?
    One faces east-west, the other north-south.
    HTH;
    Amy

  • Bar Chart and Pie Chart

    Hi!
    In My application i want to create few bar and pie chart.
    If is there any code for generating bar and pie chart,
    pl send me.
    If third party software is available tell me the details of it.

    Sure, this functionality would be nice to have right
    out of the box, but when you think about it: should
    Sun be distributing a reporting SDK and promoting bad
    practices anyhow? Implementing your reporting in
    disparate and distributed manners is just plain messy
    and definitely translates to a bad practice. Turning
    to a centralized reporting mechanism, driven by a
    reporting server that can handle the needs for 80% of
    your requirements is a helluva lot more thoughtful and
    mindful than implementing separate mini reporting
    engines encapsulated within each and every application
    that you deploy.Elegantly stated! On a practical point, my company built an Enterprised based reporting solution on top of Java technology within the windows environment (please be kind). Specifically we used Java, ASP and Javascript (no VBScript), and delivered the information using the Microsoft IE 4 and 5.
    However, since Microsoft chose to elminate Java from it's current browser (IE6), we have to throw two years of coding away. We are now in the process of moving backward (technically speaking) to a desktop reporting model using Java (no browser technology) that accesses an Enterprise database, or embedded Java database. None of our customers are using Netscape, so that was never an option. Microsoft's and Sun's inablity to cooperate almost decimated our company's product line (and it still may).
    So I agree with you that an Enterprise server based reporting solution is the best architecture, and yet here I am running away from it after a two year struggle with competing standards. Sometimes the best solution loses for reasons that are simply not technical in nature.

  • Grouped stacked bar graph ?

    Hey,
    does anyone know how to make a grouped stacked bar graph in ADF ?
    Single stacked bar works, but I want multiplestack bar grouped together...
    for an example see : http://www.highcharts.com/demo/column-stacked-and-grouped
    thanks for any help,
    D

    My JDev version is Studio Edition Version 11.1.2.3.0 ( Build JDEVADF_11.1.2.3.0_GENERIC_120914.0223.6276.1 ).
    I have looked into the component and I only found a a grouped bar graph and a stacked bar graph . But I want them combined : group values vertically in one bar and combining several of these bars together in a group.
    See the link I mentioned in my original message.
    Dieter

  • Total for stacked bar

    Is it possible to show the total for the stacked bar in
    column chart and bar chart?
    eg. If I have two series with values 3 and 5 and they are
    stacked, I just want to show the total 8 for the whole stack on the
    top as in data label. But what I able to find is only showlilng
    datalabel using labelPosition for each series.
    Is it possible to show the total of whole stack on top? If
    yes, please let me know how?
    thanks

    I know its very late, but did you get a solution to it?
    I am looking for one now .
    Thanks,
    Sam

Maybe you are looking for

  • External monitoring

    Making the transition from Final Cut, pretty smooth so far. I have a Blackmagic extreme HD video card installed but it will only display what is in the source monitor not program monitor or timeline. Any suggestions? I have checked sequence settings.

  • Centro memos fails to launch

    I'm still using a Palm Centro.  I had a memo open and accidentally launched Hot Synch when I wasn't connected to the cable.  I kept trying to cancel to make an emergency phone call and finally removed the battery to restart the unit.  Now whenever I

  • Safari won't display Google calendar

    When I try to go to my calendar it lets me log in, and then I get a blank page with this heading http://www.google.com/calendar/render?pli=1&auth=DQAAAK0AAAASFliuHACidT51p-j6oWqsyZkmPFbmWYZQn2U7tpdDS_y80ZWGmEA0n5OUI7AHpeWk21xEiX4NEbb8eSrGLMq5TR6 -cTh

  • Batch printing - page format issue

    I am creating a smartform in a batch job and sending it to various printers throughout our company.  The form is going to the printer but it attempts to print in the A4 (DINA4) page format.  I have the smartform set to print (under the Form Attribute

  • ID CS3 Custom Page Set-up

    I am trying to set up a custom page for DVD Case inserts.  I have DVD Case Inserts sheets that  have perferations for the edges and the folds down the center. I am having a terible time setting up the page. The full sheet is 11.75 by 8.25" I set cust