Stacked bar chart errors

I am creating a stacked bar chart and put a max row count of 50, but the graph actually shows more than 50. After the 50 data points, all of the rest of the dates along the x axis are out of order. Is there another location i also need to enforce this max row count?

Hi HCMJ,
By default, the bar value will not overlapping each other in stacked bar chart, and we cannot increase or decrease the gap between the series in Reporting Services.
Based on my research, I find a workaround can achieve your requirement, please refer to the steps below:
Create a dataset with the query below (sample data):
CREATE TABLE #temp(name nvarchar(50),time nvarchar(50),value int)
INSERT INTO #temp VALUES     ('Invoiced','YEAR',100),('Invoiced','MONTH',200),('Budget','MONTH',300),('Budget','YEAR',600)
SELECT * FROM  #temp
Insert time field to Category Groups pane, and change the group name to “time”.
Insert value field to Values pane, then change the value to like below:
=min(Fields!value.Value,"time")
Insert another field with the following expression to Values pane:
=max(Fields!value.Value,"time")
Change the type of chart from Stacked Bar Chart to Range Bar Chart.
Right-click the Series field to change the Fill color to #9bff8c00 (DarkOrange with 155 Transparency) or any color with Transparency you like. Now we can get the following:
Preview it and get the following result:
If there are any other questions, please feel free to ask.
Thanks,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • Stacked Bar Chart Error

    I have a 30+ series bar chart and the dates along the bottom are not showing in order...a sample of one of the series is as follows:
    select null link, trunc(SAMPLE_TIME) label, SUM(EVENT_TIME) "CGS wait for IPC msg"
    from "DART"."DART_TOP5_TIMED"
    where event_name = 'CGS wait for IPC msg'
    and instance_name = nvl (:P1_instance_name, instance_name) and sample_time>sysdate-30
    group by trunc(SAMPLE_TIME)
    order by trunc(SAMPLE_TIME)
    Is there another line I need to add to ensure it goes in order?
    Edited by: jclarke2 on Jun 23, 2009 11:01 AM

    <?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
    <root>
    <type>
    <chart type="Stacked 2DColumn">
    <animation enabled="no"/>
    <hints auto_size="yes">
    <text><![CDATA[{NAME}, {VALUE}]]></text>
    <font type="Verdana" size="10" color="0x000000" />
    </hints>
    <names show="no"/>
    <values show="no" prefix="" postfix="" decimal_separator="." decimal_places="0" />
    <arguments show="no" />
    <column_chart column_space="3" block_space="3">
    <border enabled="no" />
    <block_names enabled="yes" placement="chart" rotation="90" x_offset="0" position="bottom" >
    <font type="verdana_embed_tf" size="8" color="0x000000" />
    </block_names>
    <background type="gradient">
    <alphas>
    <alpha>100</alpha>
    <alpha>100</alpha>
    <alpha>100</alpha>
    </alphas>
    <ratios>
    <ratio>0</ratio>
    <ratio>120</ratio>
    <ratio>0xFF</ratio>
    </ratios>
    </background>
    </column_chart>
    </chart>
    <workspace>
    <background enabled="yes" type="solid" color="0xffffff" alpha="0" />
    <base_area enabled="no" />
    <chart_area enabled="yes" x="230" y="40" width="570" height="550" deep="0">
    <background enabled="no"/>
    <border enabled="no" size="1"/>
    </chart_area>
    <grid>
    <values />
    </grid>
    </workspace>
    <legend enabled="yes" x="10" y="50">
    <names enabled="yes">
    <font type="Verdana" size="10" color="0x000000" />
    </names>
    <border enabled="no"/>
    <values enabled="no"/>
    <scroller enabled="no"/>
    <header enabled="no"/>
    <background alpha="0"/>
    </legend>
    </type>
    #DATA#
    </root>

  • SVG CHart error ORA-20001 with Stacked Bar Chart HTML DB 1.6.0.00.87

    Hi,
    during I put a How-To into execution (How To Create a Stacked Bar Chart) I'll get the following error code:
    SVG Chart error:ORA-20001:line_Chart error:ORA-20001:
    get_data error:ORA-20001:Parse error:ORA009
    (see http://www.oracle.com/technology/products/database/htmldb/howtos/index.html)
    This Situation occurs when i add a second series to the
    chart. The first series works fine. I've used the following SQL-Statement:
    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 = 'Audio' group by to_char(o.order_timestamp,'Mon YYYY') order by sales_month_order);
    Please help.
    Regards
    Detlev

    Well,
    I've just been struggling for a couple of hours with a cluster bar chart giving the same problem.
    The problem is definitely with "ORDER BY".
    I guess the graphing chart is taking the sql query as a string and then does some other manipulation on it which ends abnormally when you include the order by clause.
    I presume that if you embed the query in a
    SELECT * FROM (<actual query with order by>)
    it might mitigate the problem.
    Bye,
    Flavio

  • Problems with stacked bar chart in Java SDK and CRDesigner

    Hi @ll,
    I have an issue with the rendering of stacked bar charts through the Java SDK and the CRDesigner. unfortunately, my research in this forum and with the help of aunt google didn't lead to success.
    These are my problems:
    I have a  stacked bar chart which, when datasets/stacks increase in number per bar, displays errors:
    1.)  the single stacks of the bar merge together randomly and form bigger stacks with the sum of the singles. the information of  single stacks gets lost in the bar.
    2.)  the total sum of all singles is bigger than the maximum value on the y-axis displays. thus, the scaling is wrong.
    1.) appears in the CRDesigner as well as in the Java SDK
    2.) only occurs in the Java SDK
    Is there any trick to turn the random merging of slices off?
    Is the false scaling a known issue and is there a bugfix/workaround?
    many thanks for all advice
    Tom

    hi folks,
    i found the answer to the above problems:
    when you specify the recordfields that are responsible for the change to the next stack or bar, the 'stack' fields have to be unique.
    in my case i evaluated durations in msec (as stacks) from different devices (as bars). randomly i had the same durations for one device. what happens is, that CR does not notice a change and accumulates to the first stack with the same duration.
    surprisingly this also seems to derange the axis scaling. fix the problem by simply using an overall unique recordfield like rownum or a formula that forms the current timestamp to text as identifier for the stacking.
    cheers
    .t

  • 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

  • Help with a stacked bar chart

    I am attempting to create a stacking bar chart which expresses monthly sales goals and monthly actual sales together as one bar. Visually, it would look like a thermometer, with the sales goal rendered as an outline, and the actual sales filling in the outline. So both bars should start at 0.
    Dollar amounts appear up the x-axis, and the months appear across the y-axis. There will be 12 bars per chart. Unfortunately, each month has a different goal.
    Is there a way to create this type of chart, using only one chart? (Not by stacking two charts on top of each other.) My boss, who has requested this chart, will be updating it herself, and has told me she needs it to be as simple as possible.
    Does anyone have any suggestions for getting the bars to stack on top of each other, instead of adding together? Thank you for your time and assistance.

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

  • How to creat a grouped stacked bar chart

    Hi,
    I am trying to create a grouped stacked bar chart.
    For 'on change of ' i have -> 1) update_month                                                                               
    2) update_source ( i have 2 values for this field -> website and ivr)
    And for 'show value' field i am trying to use 1) sum of valid_count
                                                                          2) sum of invalid_count
    -> I need two stacked bars for each month, each stacked bar belongs to either website or ivr and is made of valid and invalid counts for that particular update source.
    when i tried to use the fields as i mentioned above, i got an error saying
    'The data you have selected doesnt fit the chart type' and explanation is as follows 'This chart type requires 2 on change of fields and i show value field OR 1 on change of field and many show value fields'.
    I have selected a stacked bar chart.
    Does any one know how to do this?
    i am trying to create a chart similar to the one in the following link http://www.java2s.com/Code/Java/Chart/JFreeChartStackedBarChartDemo4.htm
    Thanks

    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

  • Urgent: Combination of stacked bar chart and line chart

    Hi,
    I have the following request: First I need series depending on the year (no problem) and two stacks for each series (first problem). Now I need two line, line 1 for total of stack 1 and line 2 for total of stack 2. Both lines should have a label showing the difference from one to next series in percent.
    Can something like this be done in BI Publisher. I got an excel sheet with such a chart, so it is possible there. Any templates, hints or tipps?
    I need this very urgent because it's the main report of my project. So if this is not working I can stop the project and have to find another reporting tool.
    Thanks
    chrissy
    Message was edited by:
    chrissy

    I've made again some tests by myself and recognized that there's something strange in the chart.
    When I create a stacked bar chart with values of DURATION, labels for TYPE_NAME and series of YEAR the first thing is, that it is not ordered. So how can this be done?
    The second error, is hard to explain ...
    Let's say I've the following values:
            Type1     Type2     Type3
    2005    1            2             3
    2006    4            5             6
    2007    7            8             9I would expect the following chart:
    2005     2006     2007
    1             4          7            Type1
    2             5          8            Type2
    3             6          9            Type3But the chart shows me the following:
    2005     2006     2007
    1             7          4            Type1
    5             2          8            Type2
    3             6          9            Type3You can see, the values are totally mixed, the code of the chart is the following:
    chart:
    <Graph seriesEffect="SE_AUTO_GRADIENT" graphType="BAR_VERT_STACK">
    <Title text="" visible="true" horizontalAlignment="CENTER"/>
    <MarkerText visible="true" markerTextPlace="MTP_CENTER" />
    <LocalGridData colCount="{count(xdoxslt:group(.//ROW,  'YEAR'))}" rowCount="{count(xdoxslt:group(.//ROW,  'TYPE_NAME'))}">
    <RowLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="TYPE_NAME">
    <Label>
    <xsl:value-of select="current-group()/TYPE_NAME"/>
    </Label>
    </xsl:for-each-group>
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="YEAR">
    <Label>
    <xsl:value-of select="current-group()/YEAR"/>
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="TYPE_NAME">
    <RowData>
    <xsl:for-each-group select="current-group()" group-by="YEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/DURATION)"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </xsl:for-each-group>
    </DataValues>
    </LocalGridData>
    </Graph>Otherwise I had made the following to have a stacked bar for duration and one for outage:
    chart:
    <Graph seriesEffect="SE_AUTO_GRADIENT" graphType="BAR_VERT_STACK">
    <Title text="" visible="true" horizontalAlignment="CENTER"/>
    <LocalGridData colCount="{count(xdoxslt:group(.//ROW,  'YEAR')) * 2}" rowCount="{count(xdoxslt:group(.//ROW,  'TYPE_NAME'))}">
    <RowLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="TYPE_NAME">
    <Label>
    <xsl:value-of select="current-group()/TYPE_NAME"/>
    </Label>
    </xsl:for-each-group>
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="YEAR">
    <xsl:sort select="YEAR"/>
    <Label>
    <xsl:value-of select="current-group()/YEAR"/>
    </Label>
    <Label />
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="TYPE_NAME">
    <RowData>
    <xsl:for-each-group select="current-group()" group-by="YEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/DURATION)"/>
    </Cell>
    <Cell>
    <xsl:value-of select="sum(current-group()/OUTAGE)"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </xsl:for-each-group>
    </DataValues>
    </LocalGridData>
    </Graph>The only thing I miss is a label for each stack, what is shown (so duration or outage) and of course the line.
    Thanks for any help
    chrissy

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

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

  • Problem with Stacked Bar Chart

    I have a problem with a stacked bar chart in Numbers 09. My chart is a single series with 6 categories. All of the categories have different values. The first 5 categories display correctly. However, the last category does not display in the color its supposed to, but rather shows up as white/background instead of the grey color shown on the legend. However, the value label is displayed in the proper place.
    When I select other chart types (pie, regular bar, or regular column) the category shows up like it's supposed to.
    This is kind of annoying since I would rather use stacked bar instead of a pie chart. Is there an upper limit on the number of values it can display as a stacked bar chart? Is this just a bug? Thanks!

    Here's my result with six values in a single series. I double clicked the last bar to change its colour from the default grey (which was visible) to magenta.
    Numbers 2.0.3, iBook G4, OS X v10.4.11
    (Shot in the dark:) Try double clicking the value label, then changing the order position of this item.
    Regards,
    Barry

  • Stacked Bar Chart with data from a Web Service

    Hi,
    I'm working on Dashboard Design (version 14.0.1.287) and I'm trying to create a chart linked to data from a webservice.
    With a Year in input, my webservice gives an Amount per Cities and Products
    Data retrieved look like this (Sheet1) :
    Paris          Tablets          45
    Paris          Laptops          12
    Paris          Cellulars          89
    New-York     Tablets          56
    New-York     Laptops          36
    New-York     Cellulars          1
    Londres          Tablets          150
    Londres          Laptops          3
    Londres          Cellulars          45
    Then I use a Pivot Table (created manually in Excel) looking like this (Sheet2) :
                   Tablets     Laptops     Cellulars
    Paris          45          12          89
    New-York     56          36          1
    Londres          150          3          45
    The chart is a Stacked Bar Chart plugged on the previous Pivot Table
    I create 3 series (one per Product), values (X) are set with Amount
    Category labels (Y) are set with Cities
    The goal is to have a dynamic chart (series and categories must update if a new city or a new product appears)
    So my question is : how can I set up the chart directly with data retrieved from webservice on Sheet1?
    Thx a lot !
    Nicolas
    Edited by: nicolasheurtevin on Sep 14, 2011 4:58 PM

    hi
    First thing , bad news if you are using .Net framework 1,
    just forget it, Flex 2 doesn't work well with framework 1, but 2nd,
    good news, if you want to use webservices, you'll have to make an
    array of objects on .Net Side and send it as objects to flex, i saw
    an example on the net but i can't seem to remember where, on the
    other hand,if you want to simply use, like i do, HTTPSERVICE its a
    very nice way to talk with .Net and you can see my example here
    http://flex1-for-dummies.blogspot.com
    By the way, in your code, you have a request tag , but you
    aren't requesting anything, because if you were you would have to
    make like this
    <mx:request>
    <Artist>{yourinputtext.text}</Artist>
    </mx:request>
    So if you don't have an input text, you don't need a request
    tag, only the operation.

  • 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

  • Stacked bar chart with negative values

    Hi,
    trying to create a stacked bar chart I only get a grey picture. Reason: my data series provides positive and negative values.
    Can anyone tell me a trick how to fix this problem?

    User614143,
    try to add the minumm negative value (but positive) to the parameter for the axis.
    e.g. show value+3000 (assuming -3000 is the minimum value)
    If you don't have a limitation for the negative values, it doesn't work. (or try to calculate first the most negative value in a before header process)
    hope this helps.
    Leo

Maybe you are looking for