Y axis max ignored for horizontal stacked bar chart (SVG)

G'day,
I'm using the standard SVG horizontal stacked bar chart (multi-series). I have set the Y axis maximum value but it is ignored - bars are plotted to their maximum height.
I've had no such problem with vertical stacked bar charts.
We're running v2.2.0.00.32.
Is this a known bug?
Regards,
Chris.

I don't understand why you are soying it is not possible.
Actually I think it is and quite easily but maybe i missunderstand the question.
But anyway, here is what I would do:
In the spreadsheet, you can calculate the percentage of each status per project:
     Completed     Pending     Partially completed     Not Started
Project 1     78.10%     6.46%     10.51%     4.93%
Project 2     51.01%     2.62%     39.21%     7.15%
And then select these data for the stacked bar chart. Here you get the graph you are looking for.
Oli

Similar Messages

  • Horizontal stacked bar chart supported?

    Hi,
    we have the requirement for a horizontal stacked bar chart. Is this supported in 12.x?
    Just to make shure bevore extending our own Chart Applets.
    Thanks,
    Matthias

    Matthias,
    There are only "Horizontal Bar" and "Horizontal Group Bar" options if you want a horizontal bar chart. The "Stacked Bar" is vertical.
    Regards,
    Kevin

  • Horizontal Stacked Bar Chart Help!

    I'm looking for a platform independent solution to a horizontal stacked bar chart. I'm interested in seeing solutions in pure CSS3, HTML5 and JavaScript. I have a solution currently coded in ASP.NET MVC4 that I want to add this chart to. I want to be able
    to pass or represent two pieces of information on the chart. For example, a company can only have 20 users. They are currently have 5. I want to show a bar that has 1/4th of the bar in a color, and the other 3/4 in another color. A complete easy
    to use parameterized javascript block would work, but I have been attempting to accomplish this in CSS3... and failing quite miserably! If anyone feels like sharing, I would be greatful! Thanks!

    Hi UOgod619,
    Please post ASP.NET related questions in
    ASP.NET forums where you could get better help.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Horizontal Stacked Bar Chart

    Hi, forum.
    I would like to make "horizontal" stacked bar chart.
    But following chart looks decidedly wrong.
    Is there any way to create it?
    String austria = "Austria";
    String brazil = "Brazil";
    String france = "France";
    String italy = "Italy";
    String usa = "USA";
    NumberAxis xAxis = new NumberAxis();
    CategoryAxis yAxis = new CategoryAxis();
    StackedBarChart<Number,String> bc = new StackedBarChart<>(xAxis,yAxis);
    bc.setTitle("Country Summary");
    xAxis.setLabel("Value"); 
    xAxis.setTickLabelRotation(90);
    yAxis.setLabel("Country"); 
    yAxis.setCategories(FXCollections.observableArrayList(austria, brazil, france, italy, usa));
    XYChart.Series series1 = new XYChart.Series();
    series1.setName("2003");      
    series1.getData().add(new XYChart.Data(25601.34, austria));
    series1.getData().add(new XYChart.Data(20148.82, brazil));
    series1.getData().add(new XYChart.Data(10000, france));
    series1.getData().add(new XYChart.Data(35407.15, italy));
    series1.getData().add(new XYChart.Data(12000, usa));     
    XYChart.Series series2 = new XYChart.Series();
    series2.setName("2004");
    series2.getData().add(new XYChart.Data(57401.85, austria));
    series2.getData().add(new XYChart.Data(41941.19, brazil));
    series2.getData().add(new XYChart.Data(45263.37, france));
    series2.getData().add(new XYChart.Data(117320.16, italy));
    series2.getData().add(new XYChart.Data(14845.27, usa)); 
    bc.getData().addAll(series1, series2);
    primaryStage.setScene(new Scene(bc, 300, 400));
    primaryStage.show();This code is based on JavaFX horizontal bar chart sample code.
    http://docs.oracle.com/javafx/2/charts/bar-chart.htm#CIHJFHDE
    I can create vertical (standard) Stacked Bar Chart.
    Mac OSX
    Java7 u4
    JavaFX 2.1
    Thanks in advance.

    Thank you for your answers.
    What is the error message, if any, that you are receiving?I have no error message and I can run it.
    But displayed chart is this.
    [http://postimage.org/image/tvtna1ish/]
    except for on one bar the second series stack does not displayIs that the same chart of mine?
    I will try looking for it in jira.

  • Stacked Bar Chart - SVG

    Hi,
    My department is conducting a series of SWOT sessions. Each item submitted during the sessions is given a category (such as Project Management), a quadrant (such as Strength), and a participant (such as Staff). I'm trying to display a stacked bar chart that will show the amount of items per quadrant for each category.
    I ran into, what looks like, the common bug with null values being returned. I tried to fix this using the query below. I use the same query below for 4 series (Strengths, Weaknesses, Opportunities, Threats) and hardcode the quadrant name accordingly (is that correct?). If only one series exists, the graph works fine. If more than one exists, the graph does not display (no error is given, it simply does not display). Does anybody have any insight? Am I taking the wrong approach with my query?
    select null link, c.category_name label, nvl(count(i.item_name),0) value
    from swot_item i, swot_category c, swot_quadrant q
    where i.item_category = c.category_id
    and i.item_quadrant = q.quadrant_id
    and q.quadrant_name = 'STRENGTH'
    AND (instr(':'||:P1_CATEGORY_LIST||':',':'||i.item_category||':') > 0 OR TO_CHAR(:P1_CATEGORY_LIST) = 'ALL')
    AND (instr(':'||:P1_PARTICIPANT_LIST||':',':'||i.item_session||':') > 0 OR TO_CHAR(:P1_PARTICIPANT_LIST) = 'ALL')
    group by c.category_name
    union all
    select null link, c.category_name label, 0 value
    from swot_category c where c.category_name not in (select c.category_name
    from swot_item i, swot_category c, swot_quadrant q
    where i.item_category = c.category_id
    and i.item_quadrant = q.quadrant_id
    and q.quadrant_name = 'STRENGTH'
    AND (instr(':'||:P1_CATEGORY_LIST||':',':'||i.item_category||':') > 0 OR TO_CHAR(:P1_CATEGORY_LIST) = 'ALL')
    AND (instr(':'||:P1_PARTICIPANT_LIST||':',':'||i.item_session||':') > 0 OR TO_CHAR(:P1_PARTICIPANT_LIST) = 'ALL')
    group by c.category_name
    Thanks,
    Brian

    Brian,
    Which version of APEX are you using? In 3.0, you can use a Flash chart, which supports a single query for all 4 series like this:
    select null link, c.category_name label,
           sum(decode(q.quadrant_name,'STRENGTH',1,0)) "Strengths",
           sum(decode(q.quadrant_name,'WEAKNESS',1,0)) "Weaknesses",
           sum(decode(q.quadrant_name,'OPPORTUNITY',1,0)) "Opportunities",
           sum(decode(q.quadrant_name,'THREAT',1,0)) "Threats"
    from swot_item i, swot_category c, swot_quadrant q
    where i.item_category = c.category_id
    and i.item_quadrant = q.quadrant_id
    AND (instr(':'||:P1_CATEGORY_LIST||':',':'||i.item_category||':') > 0 OR TO_CHAR(:P1_CATEGORY_LIST) = 'ALL')
    AND (instr(':'||:P1_PARTICIPANT_LIST||':',':'||i.item_session||':') > 0 OR TO_CHAR(:P1_PARTICIPANT_LIST) = 'ALL')
    group by c.category_name- Marco

  • Horizontal Cluster bar chart

    I am tasked by my PHB to produce a horizontally-stacked bar chart, the horizontal axis is for simple numbers of events, the bars are types of events. It should also have a negative 'reflection' (see drawing below) There is no Z axis. I have successfully generated this as a vertical stacked bar chart (very simple) and I think a simple rotate 90 degrees right would do it, but I can't find one.
    It should look like this, ignoring the dashes:
    ######## ######## Event 1, Value 8
    ----###### ###### Event 2, Value 6, etc
    Any ideas or workarounds welcome!
    Keith Templeman
    EDIT Post to refer to a horizontal cluster bar chart which is what I really want
    Edited by: mansfields on Dec 3, 2008 2:44 PM

    The horizontal equivalent of the vertical stacked bar would be a horizontal stacked bar, which is there on the menu for me to see. As said in my previous post 'what I am after is the horizontal equivalent of the vertical cluster bar'
    To repeat what my requirement is, I have a group of sales people who have five measures each against them, and I can already graph them thus:
    6 5 4 3 3
    but I want to graph them this way, like 90 degrees rotated to the right:
    6 ######
    5 #####
    4 ####
    3 ###
    3 ###
    I think this would be called a horizontal cluster chart, and there is no option on the list that is called that.
    Hope this makes it clearer, and thank you very much for your time and effort so far.
    keith
    EDIT
    From the online books section - "you can only display clustered bar charts in vertical format". That sorts that out then.
    Edited by: user10677133 on Dec 3, 2008 5:16 PM

  • Stacked bar chart with percentage in Xcelsius

    Hi,
    I want to  create a stacked bar chart(Horizontal) for the following data
    Project 1  --- >    2140, 177,  288, 135
    Project 2  --->     856, 44, 658, 120
    For following status respectively
    Completed,      Pending ,Partially completed,  Not Started
    Project 1 and Project 2 will be on Y axis.
    I want this data to be divided in percentage.
    as shown below
    Project 1 |___135_____|___177_____|______2140_______|
    Project 2 | __44__|___120_____|________856__________|
    0              20           40 ........                          100
    How to achieve this in xcelsius?

    I don't understand why you are soying it is not possible.
    Actually I think it is and quite easily but maybe i missunderstand the question.
    But anyway, here is what I would do:
    In the spreadsheet, you can calculate the percentage of each status per project:
         Completed     Pending     Partially completed     Not Started
    Project 1     78.10%     6.46%     10.51%     4.93%
    Project 2     51.01%     2.62%     39.21%     7.15%
    And then select these data for the stacked bar chart. Here you get the graph you are looking for.
    Oli

  • Question regarding 3-D stacked bar chart

    Hi All,
    I'm creating a report that has a view of a horizontal stacked bar chart. I was wondering if there's a way to portray that stacked bar chart as a 100% stacked bar chart like in ms excel?
    Thanks,
    Wayne

    Hi Wayne,
    I'm not sure if I understand your query correctly but I'll have a go at answering your question. I'm guessing that you have a horizontal bar chart that looks something like this, even after you've indicated that you want it to be a stacked chart -:
    |{color:#ff0000}@@@{color}
    |{color:#008000}#########{color}
    |{color:#ff00ff}++{color}
    |{color:#0000ff}===={color}
    However, you want it to look more like this -:
    |{color:#ff0000}@@@{color}{color:#008000}#########{color}{color:#ff00ff}++{color}{color:#0000ff}===={color}
    For the purposes of the example, let's assume you are using two fields for the bar chart - Account Type and *# of Accounts*. By default, your chart options would be set such that Account Type is the value used for the Y axis and *# of Accounts* is the value used for the X axis. Indicating that you want a stacked graph results in the first graph example I listed above. However, if you indicate that Account Type is the value to be used for the measure labels and that there is no value for the Y axis, then a stacked graph will look like the second graph example I listed.
    Hope this helps to answer your question.
    Regards,
    Cameron

  • How to format individual series in stacked bar chart

    Hi,
    Is there any way I can format (sort order, or transperency) of each series individually in a horizontal stacked bar chart?
    I am trying to create a gantt chart, where I am using two series
    1. Start Date
    2. Duration
    The function of series one (Start Date) is only to place the start position of the horizontal bar of series 2 (duration) in the year time frame.
    After creation of the stacked bar chart, I want to make the reansperency of series 1 (start Date) as 0 so that the duration bar apears floating and gives the feel of Gantt chart.
    Thanks
    Aurobindo

    You may wish to see the article <a href="http://www.xcelsiusjournal.com/index.php?option=com_content&task=view&id=45&Itemid=2" target="_blank" title="Constructing a Simplified Gantt Chart in Crystal Xcelsius">Constructing a Simplified Gantt Chart in Crystal Xcelsius</a>. It does require changing the skin to Windows Classic, but that&#39;s a small price to pay for having a gantt-like capability.  <p>Loren Abdulezer/Evolving Technologies Corporation<br /><strong><a href="http://www.XcelsiusBestPractices.com">www.XcelsiusBestPractices.com</a></strong><br /><strong><a href="http://www.XcelsiusJournal.com">www.XcelsiusJournal.com</a></strong> </p>

  • Help with stacked bar chart

    Hello,
    I'm looking for help regarding horizontal stacked bar chart. Typically for stacked bars Publisher seems to want data for each stacks per row, but my data looks like this:
    <DATA>
    <ROW>
    <TYPE>Type 1</TYPE>
    <CLASS>A</CLASS>
    <TOTAL>10</TOTAL>
    </ROW>
    <ROW>
    <TYPE>Type 2</TYPE>
    <CLASS>B</CLASS>
    <TOTAL>10</TOTAL>
    </ROW>
    <ROW>
    <TYPE>Type 1</TYPE>
    <CLASS>B</CLASS>
    <TOTAL>20</TOTAL>
    </ROW>
    <ROW>
    <TYPE>Type 2</TYPE>
    <CLASS>A</CLASS>
    <TOTAL>10</TOTAL>
    </ROW>
    <TYPE>Type 3</TYPE>
    <CLASS>A</CLASS>
    <TOTAL>40</TOTAL>
    </ROW>
    </DATA>
    So each bar would be the TYPE element, and each stack within the bar would be the CLASS element.
    Here is a very crude drawing of what I would want the chart to look like: http://i.imgur.com/3gEdEQ5.png
    How can I achieve this? Thanks in advance.

    Jody,
    I'm sorry that I missed that you didn't want an overlay solution. You wrote it plainly, I just didn't read carefully.
    This is as close as I could come to how I now read your request:
    Here I have charted your Actual and a column of zeros that I have called the Goal Reference. The last column contains the goal values and I have used them as Positive Custom Error Bars for the Goal Reference series. I'm not thrilled with the look, but unless I know for sure that I'm on the right track, I'll leave it there for now. The width difference between the goal and the actual can be adjusted.
    Jerry

  • Stacked Bar Chart Query

    Hello everyone,
    I need some help on a query for a Stacked Bar Chart.
    I copied the following query from the "How To" Pages for a Stacked Bar (HTML DB 2 Day Developer) and adjusted it according to my tables:
    SELECT NULL l,
    sales_month,
    revenue
    FROM (
    SELECT TO_CHAR(o.order_timestamp,'Mon YYYY') sales_month,
    SUM(oi.quantity * oi.unit_price) revenue,
    TO_DATE(to_char(o.order_timestamp,'Mon YYYY'),'Mon YYYY') sales_month_order
    FROM DEMO_PRODUCT_INFO p,
    DEMO_ORDER_ITEMS oi,
    DEMO_ORDERS o
    WHERE o.order_timestamp <= (trunc(sysdate,'MON')-1)
    AND o.order_timestamp > (trunc(sysdate-365,'MON'))
    AND o.order_id = oi.order_id
    AND oi.product_id = p.product_id
    AND p.category = 'Phones'
    GROUP BY TO_CHAR(o.order_timestamp,'Mon YYYY')
    ORDER BY sales_month_order
    The problem now that I have is, that the results are not always correct.
    That means, that the numbers for every month that has 31 days is incorrect.
    I created a chart for 2005 and the numbers for Jan, March, May, July and so on are wrong. I found out that they always include numbers from the next (first) day of the next month, that means that the January number contains the numbers from the 1st of February, that March number contains the numbers of the 1st of April and so on. The only difference of my query is that I did not use a timestamp but rather a date. Can someone tell me what to do to solve the problem without changing the column to timestamp? I assume it has something to do with rounding up or "truncating" the date!?
    I appreciate your help!!

    Is there nobody out there, how might give me a hint ?? :-(

  • Stacked Bar Chart in Explorer

    BO Explorer 4.1 SP4 (no fix packs)
    I have an issue where I cannot create a stacked bar chart in Explorer. Taking a simple data-set (below screenshot), I wish to have a stacked bar chart that will show this data i.e. one bar per year showing as a %. Is this possible?
    Unfortunately the result I am getting is show below, which obviously isnt correct

    Yes there are ways to get stacked bar chart !
    To get a better idea, just have a look on these threads
    Stacked bar chart to show vertically
    Re: Horizontal stacked bar chart supported?
    Regards
    Ram Upadhyay

  • Stacked bar chart x axis crunching up

    Post Author: Pranab
    CA Forum: Xcelsius and Live Office
    I have purchased Crystal Xcelsius Workgroup 4.5. I have created a dashboard in which I have used webservices call to get data from database.
    One of the three charts of my dashboard is a stacked bar chart. Now my problem is, when the webservice gets data and refresh the chart, the x-axis of it becomes squeezed and the main chart becomes very small. It becomes so in runtime. However in design mode i didnt notice such behavior.
    But same flash file s showing fine when I am using it somewhere else.
    I am facing big trouble, as I tried to search in web about this problem, but couldnt find such case.

    Post Author: amr_foci
    CA Forum: Xcelsius and Live Office
    my friend,, its a bug,
    (this happens when you make "ignore end blanks" for the chart)
    i was mailing the business objects crystal xcelsius support team about that bug and they told me that its a bug and it may take months to be fixed,, we are waiting...

  • ADF DVT: Hide certain series of the Horizontal Stacked Bar

    Hello,
    I am trying to achieve a 'waterfall chart' effect by using the <dvt:horizontalBarGraph> of type BAR_HORIZ_STACK. I have really 3 series to show with different colors, but i also provided the 4th series to be the 'offset' value - which tells from which position on Y-axis the first colored bar should be shown. In another word, i created a horizontal stacked bar, with 4 series of data, but i want to hide the bar for 1st series, make it completely transparent.
    I tried to play with <dvt:series> attributes, but can't find 'visible' or 'transparent' or something like that. And i tried to make the background of the first bar to be the same as the chart background - but that won't give good result: First of all, i want to keep the gradient color effect of the bars, but there's no easy way to keep the background to have the same gradient color in the same areat; Second, due to the same reason i can't make a 3D bar to be transparent over a mono-colored background. Third, i want to see the vertical grid lines which connects to the scale values, so even if i make the bar with plain color with no 3D or gradient effect, i will make the background grid lines disconnected.
    Thank you very much for your help!
    Feng

    Achie,
    This is not an issue with the graph as such, but the data issue. Since the value of the data that is being displayed is huge and other datas are relatively very small to occupy the graph area (Ex : 60105 Vs 10).
    You may want to try implementing zoomListener and/or zoomScrollListener for the graph to zoom and see the small datas.
    &amp;lt;dvt:graph&amp;gt;
    -Arun

  • Workaround for NO DATA FOUND in stacked bar chart?

    Hello, Ive got a stacked bar chart in the making, when one of the series doesnt have data, the whole chart show the no data found message but not the other series that do have data. Is there a workaround for this? can I catch the exception in the Series Query? Or is there any other workaround someone has tried with success???
    thanks for any help or suggestion!!!

    Ok, figured out a workaround based on my rusted SQL memories (its probably not the most efficient way to go), made a view like this:
    CREATE OR REPLACE FORCE VIEW "VISTA1" ("NOMBRE", "TIPO_LOCAL", "TIPO", "FECHA", "OPCIONAL") AS
    select USUARIO.NOMBRE, USUARIO.TIPO TIPO_LOCAL, CONSUMO.TIPO, CONSUMO.FECHA, CONSUMO.OPCIONAL
    FROM USUARIO
    LEFT JOIN CONSUMO
    ON USUARIO.ID_USUARIO = CONSUMO.USUARIO_ID_USUARIO
    on this view, i made individual selects and UNIONed them for a comeplete table, with null values being zero, just what was needed:
    select null link,
    LOCAL,
    total "CANTIDAD"
    FROM
    select
    count(A.TIPO) TOTAL, 'SIGO SAMBIL' LOCAL
    FROM VISTA1 A
    where A.tipo='3 PACK' AND A.NOMBRE = 'SIGO SAMBIL'
    UNION
    select
    count(A.TIPO) TOTAL, 'A GRANEL' LOCAL
    FROM VISTA1 A
    where A.tipo='3 PACK' AND A.NOMBRE = 'A GRANEL'
    etc.....
    for each series, i then had to change the A.tipo value to whatever the new series should be.
    regards,
    Mariano.

Maybe you are looking for

  • Is Flash 10.3.181.34 a 64-bit version?

    I am running Fedora 14 64 bit version of Linux and I am having a problem with Flash.  When I try to look at what should be a Flash item, I get a blank spot.  If I right click in there I get the message Movie not loaded and a place to click About Flas

  • Cannot add movies to itunes11

    After upgrading to itunes11 I cannot add movies to the movie folder in itunes. They show up in Home Videos with the columns of songs. I can see them in the Genres folder but not in movies and unwatched. They play without problems from home videos.

  • Syntax error in GP_ERR_RSAPTD1

    I encountered this error while attempting to activate my InfoSource for 0fiar_C02 cube "Syntax error in GP_ERR_RSAPTD1_____________, row 25 (-> long text) Message no. RG102 Diagnosis "DTFIAR_1" must be a flat structure. You cannot use internal tables

  • X120e Cant scroll to the bottom with trackpad mid button

    Hey, i've been playing with my new x120e for a while and one thing bugs me. As i try to scroll down with the trackpad mid button, sometimes I cant get to the very bottom of the document. I can see there is a little gap at the bottom of the scroll bar

  • Cuando enciendo iphone 4s no aparece el logo de apple

    cuando enciendo iphone 4s no aparece el logo de apple