Column chart error

Hi All
In my column chart I am having following error due to my axisRenderer but I
am unable to find out the root cause of error.
Error
TypeError: Error #1009: Cannot access a property or method of a null object
reference.
            at
mx.charts::AxisRenderer/calcStaggeredSpacing()[C:\Work\flex\dmv_automation\p
rojects\datavisualisation\src\mx\charts\AxisRenderer.as:2195]
            at
mx.charts::AxisRenderer/calcRotationAndSpacing()[C:\Work\flex\dmv_automation
\projects\datavisualisation\src\mx\charts\AxisRenderer.as:1586]
            at
mx.charts::AxisRenderer/adjustGutters()[C:\Work\flex\dmv_automation\projects
\datavisualisation\src\mx\charts\AxisRenderer.as:1326]
            at mx.charts::AxisRenderer/set
gutters()[C:\Work\flex\dmv_automation\projects\datavisualisation\src\mx\char
ts\AxisRenderer.as:798]
            at
mx.charts.chartClasses::CartesianChart/updateAxisLayout()[C:\Work\flex\dmv_a
utomation\projects\datavisualisation\src\mx\charts\chartClasses\CartesianCha
rt.as
:2028]
            at
mx.charts.chartClasses::CartesianChart/updateDisplayList()[C:\Work\flex\dmv_
automation\projects\datavisualisation\src\mx\charts\chartClasses\CartesianCh
art.a
s:1355]
            at mx.core::UIComponent/validateDisplayList()
            at mx.managers::LayoutManager/validateDisplayList()
            at mx.managers::LayoutManager/doPhasedInstantiation()
            at mx.managers::LayoutManager/validateNow()
            at mx.effects.effectClasses::TweenEffectInstance/onTweenEnd()
            at mx.effects.effectClasses::ResizeInstance/onTweenEnd()
            at mx.effects::Tween/endTween()
            at
mx.effects::Tween/http://www.adobe.com/2006/flex/mx/internal::doInterval()
            at mx.effects::Tween$/timerHandler()
            at flash.utils::Timer/_timerDispatch()
            at flash.utils::Timer/tick()
my Axis renderer
<mx:horizontalAxis>
                  <mx:CategoryAxis id="myAxis" 
                                           categoryField="X"   />
            </mx:horizontalAxis>
             <mx:horizontalAxisRenderers>
                  <mx:AxisRenderer
labelRotation="{Application.application.xAxisLabelRotator.value}"
                                           axis=""/>
             </mx:horizontalAxisRenderers>
Any help is highly appreciable.
With thanks and warm regards,
Varun Bajaj

This looks like the same problem I just encountered. Did you ever figure anything out?

Similar Messages

  • SSRS 2008 Column Chart with Calculated Series (moving average) "formula error - there are not enough data points for the period" error

    I have a simple column chart grouping on 1 value on the category axis.  For simplicity's sake, we are plotting $ amounts grouping by Month on the category axis.  I right click on the data series and choose "Add calculated series...".  I choose moving average.  I want to move the average over at least 2 periods.
    When I run the report, I get the error "Formula error - there are not enough data points for the period".  The way the report is, I never have a guaranteed number of categories (there could be one or there could be 5).  When there is 2 or more, the chart renders fine, however, when there is only 1 value, instead of suppressing the moving average line, I get that error and the chart shows nothing.
    I don't think this is entirely acceptable for our end users.  At a minimum, I would think the moving average line would be suppressed instead of hiding the entire chart.  Does anyone know of any workarounds or do I have to enter another ms. connect bug/design consideration.
    Thank you,
    Dan

    I was having the same error while trying to plot a moving average across 7 days. The work around I found was rather simple.
    If you right click your report in the solution explorer and select "View Code" it will give you the underlying XML of the report. Find the entry for the value of your calculated series and enter a formula to dynamically create your periods.
    <ChartFormulaParameter Name="Period">
                      <Value>=IIf(Count(Fields!Calls.Value) >= 7 ,7, (Count(Fields!Calls.Value)))</Value>
    </ChartFormulaParameter>
    What I'm doing here is getting the row count of records returned in the chart. If the returned rows are greater than or equal to 7 (The amount of days I want the average) it will set the points to 7. If not, it will set the number to the amount of returned rows. So far this has worked great. I'm probably going to add more code to handle no records returned although in my case that shouldn't happen but, you never know.
    A side note:
    If you open the calculated series properties in the designer, you will notice the number of periods is set to "0". If you change this it will overwrite your custom formula in the XML.

  • Null object reference error in Axis Renderer in Case of Stacked Column Chart

    We are trying to display a Flex Column chart (when stacked ) with single value in DataProvider but we used to get following error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at mx.charts::AxisRenderer/calcStaggeredSpacing()[C:\Work\flex\dmv_automation\projects\datav isualisation\src\mx\charts\AxisRenderer.as:2195]
    at mx.charts::AxisRenderer/calcRotationAndSpacing()[C:\Work\flex\dmv_automation\projects\dat avisualisation\src\mx\charts\AxisRenderer.as:1586]
    at mx.charts::AxisRenderer/adjustGutters()[C:\Work\flex\dmv_automation\projects\datavisualis ation\src\mx\charts\AxisRenderer.as:1326]
    at mx.charts::AxisRenderer/set gutters()[C:\Work\flex\dmv_automation\projects\datavisualisation\src\mx\charts\AxisRender er.as:798]
    at mx.charts.chartClasses::CartesianChart/updateAxisLayout()[C:\Work\flex\dmv_automation\pro jects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:2028]
    at mx.charts.chartClasses::CartesianChart/updateDisplayList()[C:\Work\flex\dmv_automation\pr ojects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:1355]
    at mx.core::UIComponent/validateDisplayList()[C:\autobuild\galaga\frameworks\projects\framew ork\src\mx\core\UIComponent.as:6351]
    at mx.managers::LayoutManager/validateDisplayList()[C:\autobuild\galaga\frameworks\projects\ framework\src\mx\managers\LayoutManager.as:622]
    at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\galaga\frameworks\project s\framework\src\mx\managers\LayoutManager.as:695]
    at Function/http://adobe.com/AS3/2006/builtin::apply()
    at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\galaga\frameworks\projects\frame work\src\mx\core\UIComponent.as:8733]
    at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\galaga\frameworks\projects\framew ork\src\mx\core\UIComponent.as:8673]
    at flash.utils::Timer/_timerDispatch()
    at flash.utils::Timer/tick()
    We have invested so much effort and done lots of googling and also followed the work around given on https://bugs.adobe.com/jira/browse/FLEXDMV-2275 but till now, we didn't get any solution.

    I solved the issue by getting rid of the creationCompleteHandler event handlers for the KPI charts. But, since I am just days into flex development, I would be indebted if someone could explain to me why that was creating problems.

  • BO 4.0 Web Intelligence, Error: Column Chart shows not the whole data

    Hello,
    I want to create a case study in BusinessObjetcs 4.0 (Web Intelligence) with a column chart.
    Year is the Category Axis and Revenue is the Value Axis.
    Unfortunately the resulting chart shows only the year 2008.
    If I choose Month as Regional Color the chart shows all years (2008-2011).
    What I do wrong? Or is this a bug?
    Thank you!
    Best regards,
    Wladimir

    Hi again,
    What I think is that there simply isn't data in the report other than the 2008,
    or at least the combination of the section master/year only has 2008 data.
    If that is not what you expect and there should be more data, also when looking specifically at the values for just this section,
    then you could check if you may be have incomplete query results. Standard they will be limited to 5000 rows, unless your universe designer decides otherwise.
    Check the number of rows returned (free cell with query details),
    if it is 5000 (or any other nice round figure) have a chat with the universe designer.
    Good luck,
    Marianne

  • How to reset drill-down column-chart based on map-chart?

    Hi guys,
    I'm facing pritty common issue while designing one of my dashboards.  Let me describe a little bit  more:
    1. I have some data extracted from BW using Query as WebService into my Xcelsius spreadsheet.
    2. I have map-chart - regions for some country.
    3. I have a drill-down column-chart, which displays data for a selected region.
    At the beginning column-chart displays results for entire country (which, in fact, is not exactly drill-down). The issue I'm fasing is, that in case I select any region and the data is drilled-down into my column-chart, I have no option to show data for the entire county in the column-chart anymore (the only one way is to restart the report).
    Are there any possible way to do this, or am I doing a design error while displaying data, which is not drilled-down, into a chart which is intended to display drill-down data only?
    Any help would be highly appreciated.
    Thanks in advance.
    Ivaylo Mutafchiev
    Varna Business Services
    Project Manager BOBJ

    Ivaylo Mutafchiev,
    I understand your problem now. So your column chart data which is coming from the QAAWS query should be having a prompt which is bound to some cell in excel. and your map might be passing the values for prompt isn't it? in your case the map might be passing a region.
    All you need to do is put the prompt in the web service for region as a optional prompt. Now pull in a check box or a Push button(name it as reset or something.). while binding the data to the check box or push button (source data) bind it to a blank cell. when user clicks on it , it passes a blank vlaue to the region(this is ur input for region) which will inturn makes the prompt optional for the region web service. which should pull all the data for all the region.
    The whole idea lies in somehow passing a blank cell to your  web service whose region prompt is optional.
    Thanks,
    Karthik

  • Column chart with null data items

    I have a Column Chart with an ArrayCollection data provider.
    The data will sometimes have missing items in some "rows'. For
    example, it might look like this where the second object has no
    "Male" property:
    public var myData:ArrayCollection = new ArrayCollection([
    {School: "Priorford", All: 95, Male: 92, Female: 98},
    {School: "Giffnock", All: 87, Female: 89},
    {School: "Hastings", All: 80, Male: 78, Female: 82}
    Sometimes I get the following error:
    TypeError: Error #1009: Cannot access a property or method of
    a null object
    reference.
    at mx.charts.chartClasses::NumericAxis/mapCache()
    I'm assuming the error is because of missing data items, but
    I'm not 100% sure. Some data sets with missing items will display
    with no error. I can't see a pattern to those that don't.
    -- I can't produce the error when using a "static" data
    source set in the Flex app itself (such as the example above).
    These always display correctly, even with missing items.
    -- In the problem case, the source data comes from a MySQL
    database through a PHP script that is called with a Flex
    httpService. The returned data is parsed in Flex, and put into the
    ArrayCollection. I was suspecting that the returned data was flawed
    in some way, but the same ArrayCollection displays correctly in a
    DataGrid. The problem is only with the Chart.
    -- I can work round the problem by adding the missing
    properties and setting them to an empty value. But I don't think I
    should have to do this.
    Has anyone seen this problem, or know of any obvious thing I
    might be doing wrong.

    Thanks Arthur.
    Your first suggestion is effectively what I'm doing as a
    workaround. But it is a bit of a pain to have to account for this
    each time when displaying a chart. It's a particular problem when
    you don't know in advance what "categories" might be returned by
    the data and that have to be charted.
    My biggest concern is that this looks like a bug, and the
    fact that it seems to occur intermittently is a bit worrying. (I
    also know that eight out of ten reported "bugs" are user error,
    which is why I was wondering if anyone else had experienced this.)
    About your second suggestion, I think the interpolateValues
    property only applies to lineSeries.

  • SVG: Chart error: ORA-20001:

    Hi,
    We are using 1.6.1.00.02 . I got a problem with SVG chart. The query returns following error:
    SVG: Chart error: ORA-20001: bar_char_error ORA-20001: get_data_error: ORA-20001 Fetch error: ORA-01782
    The column names are correct. The same query works perfectly in HTMLDB reports.
    Following is the query:
    SELECT
    TRANSACTION_dATE,
    SUM(SALES) SALES,
    SUM(COST_OF_SALE) COST_OF_SALE
    fROM HTML_SALES_REPORT_View
    WHERE transaction_date between
    '01-DEC-2004' and '31-DEC-2004'
    GROUP BY TRANSACTION_DATE
    Help will be appreciated.
    Regards,
    Hamayun

    Hi,
    you have to use the following syntax:
    SELECT link, label, value
    Example
    SELECT
    null link, TRANSACTION_dATE label,
    SUM(SALES) value ,
    fROM HTML_SALES_REPORT_View
    WHERE transaction_date between
    '01-DEC-2004' and '31-DEC-2004'
    GROUP BY TRANSACTION_DATE
    And to display your cost_of_sale data you have to add a second series like this:
    SELECT
    null link, TRANSACTION_dATE label,
    SUM(COST_OF_SALE) value
    fROM HTML_SALES_REPORT_View
    WHERE transaction_date between
    '01-DEC-2004' and '31-DEC-2004'
    GROUP BY TRANSACTION_DATE
    because you can't display two lines with just one query.
    I hope this will help.
    Regards, Jörg

  • Flash chart - Error - No chart data available

    Hi
    I have a Flash chart that shows the message "Error - No chart data available" (not the no data found message).
    If I run its query in sql*plus (using the same parameters) I get 4 rows (with url, label and value columns). I am clueless about how to start investigating this as the chart does not show any other information... Any advice?
    What does that message mean? Obviously is something different from no data found?
    Thanks
    Luis

    Hi Marco
    Thanks for the reply. I did what you said and found out the problem:
    chart Flash Chart error: ORA-20001: get_data error: ORA-20001: Fetch error: ORA-01843: not a valid monthThis was caused because I used the following construction:
    where date_from = :p5_date_fromIf this was a report, this would run fine as I set the date format mask using a application level process. However, as Flash charts use separate database connections, they ignore that setting (btw I posted a message about this problem).
    I fixed it hardcoding a format mask in my SQL. Not nice but it works!
    Thanks
    Luis

  • Column chart dataprovider null object refrerence #1009

    hi
    i have one column chart whose data provider initially is set to httpservice's lastresult . i have created one function to load chart with new data on one button click. when i click that button the chart should be loaded with new data so i have written in click function of button.... chart.dataprovider=gettdata.lastresult.people.person;..... but when i run the code and click the button i gives the error
    TypeError: Error #1009: Cannot access a property or method of a null object reference...... but when i again click dismiss button of error and click the button to get new data the chart gets loaded with new data........
    i am using flexlib's mdIWINDOW as parent of column chart... please help

    Thanks Arthur.
    Your first suggestion is effectively what I'm doing as a
    workaround. But it is a bit of a pain to have to account for this
    each time when displaying a chart. It's a particular problem when
    you don't know in advance what "categories" might be returned by
    the data and that have to be charted.
    My biggest concern is that this looks like a bug, and the
    fact that it seems to occur intermittently is a bit worrying. (I
    also know that eight out of ten reported "bugs" are user error,
    which is why I was wondering if anyone else had experienced this.)
    About your second suggestion, I think the interpolateValues
    property only applies to lineSeries.

  • Multi-column chart issues

    Hi,
    I'm trying to make a 2d column chart of quiz entry results with multiple series (one per possible answer) but it's not working as intended. I have 5 series all with code like:
    select null link, substr(question, 1, INSTR(question,' - ',1,1)), count(answer) from quizdata
    where answer ='Strongly Disagree'
    and :P13_DEP = emp_dep
    and to_char(sysdate, 'YYYY') = to_char(ins_date, 'YYYY')
    group by substr(question, 1, INSTR(question,' - ',1,1))Except with the answer being different (Agree, Strongly Agree~). However, when I load the page it only shows the results of the first series (Strongly Disagree, or if I delete that then Disagree)...anyone see what I'm doing wrong?
    x-axis = question
    y-axis = count (number of people to select that option this year)
    There should be 5 columns per question.
    Mike

    For anyone who has a similar issue with multiple series being displayed the reason for my error was that I didn't specify a name for the value...since all of them were count(c) they clashed; making it count(c) "Disagree" etc made it display as intended.
    Mike

  • Strok property in column chart

    In my application, there is a column chart. if the user click
    on any bar of the histogram(column chart), that time, stroke
    property will be set in different colour.
    <mx:ColumnSeries id="series" xField="xxx" yField="yyy"
    >
    if i add strok property in above line then it always shows
    the strok in the column chart.
    but i need it dynamiccaly. like
    <mx:ColumnChart id="chart" dataProvider="{xyz}"
    name="Histogram Chart" width="100%"
    selectionMode="multiple"
    height="100%" toolTip="{ccToolTip}" showDataTips="true"
    itemClick="histogramBarClick(event)"
    >
    I want to set the stroke on the click event.
    I tried in the function histogramBarClick(event){
    ColumnChart.ColumnSeries .setStyle("stroke",s3);
    and s3 is
    <mx:Stroke id="s3" color="0xFFCC66" weight="2"/>
    there is no compile time error but when i run this the i m
    getting
    Error #1010: A term is undefined and has no properties.
    can any body help me?
    Thanks

    Are you going to show the bar going past the maximum value?
    If not, then you should change the Y value when entered into the array to the maximum value allowed. i.e.
    if(itemYValue > maxAllowedValue) {
         itemYValue = maxAllowedValue;
    Where maxAllowedValue is a variable you set on the application to control the maximum value for the chart.
    This is assuming that you are loading the values into an Array before updating the chart dataprovider with that array.

  • Highlighting a column in column chart

    I have a column chart with a datetime axis and I want to highlight the column for the current month. I'm trying to do this by changing the display properties of the item belonging to current month in the chart series. The problem is, 'chartSeries.items' returns null in the initialize() method for the chart. So, I cannot use chartSeries.getChildAt(i). The chart loads okay and I can see all the data correctly though.
    Any ideas on how I can do this will be appreciated.
    Here's the code I have:
                public function initializeChart():void {
                  var date:Date = new Date();
                  var currMonth:Number = date.getMonth();
                  for (var i:int=0; i<salesData.length; i++) {
                  var obj:Object = salesData.getItemAt(i);
                    if (obj.month == currMonth) {
                               //code to get chart item for this month and highlight it            
                           //This line throws Index out of bounds error - when I look at salesSeries, salesSeries.items is null at this point
                           var specialColumn:DisplayObject = this.salesSeries.getChildAt(i);
                         specialColumn.opaqueBackground = 0xFF0000;

    In case people want to know how to do this - you can do this with 'fillFunction'. Here's the sample code:
                public function myFillFunction(element:ChartItem, index:Number):IFill {
                var item:ColumnSeriesItem = ColumnSeriesItem(element);
                var currDate:Date = new Date();
                if (item.xValue.month == (currDate.month+1)) return new SolidColor(0x000000);
                return new SolidColor(0x0000DD);
    <mx:series>
                    <mx:ColumnSeries
                     id="salesSeries"
                        xField="date"
                        yField="sales"
                        displayName="sales"
                        dataProvider="{salesData}"
                        fillFunction="myFillFunction"
                    />
                </mx:series>

  • Is Stacked Bar/Column chart Supports Multiseries..?

    Hi All
    Is Stacked Bar/Column chart Supports Multiseries..?
    I was trying to build a Stacked Bar chart .And add a line
    series to it But when i run this I'm getting an error
    like this
    "ReferenceError: Error #1056: Cannot create property offset
    on mx.charts.series.LineSeries."
    Here is My Code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable]
    public var netPrByQtrData:ArrayCollection=new
    ArrayCollection
    {quarter:"Q4 05", bottom:88.89, middle:11.11, top:0.00,
    netPromoter:-88.89},
    {quarter:"Q1 06", bottom:80.00, middle:10.00, top:10.00,
    netPromoter:-70.00},
    {quarter:"Q2 06", bottom:16.67, middle:50.00, top:33.33,
    netPromoter:16.67},
    {quarter:"Q3 06", bottom:28.57, middle:28.57, top:42.86,
    netPromoter:14.29},
    {quarter:"Q4 06", bottom:80.00, middle:20.00, top:0.00,
    netPromoter:-80.00},
    {quarter:"Q1 07", bottom:80.00, middle:0.00, top:20.00,
    netPromoter:-60.00},
    {quarter:"Q2 07", bottom:60.00, middle:20.00, top:20.00,
    netPromoter:-40.00},
    {quarter:"Q3 07", bottom:80.00, middle:0.00, top:20.00,
    netPromoter:-60.00}
    ]]>
    </mx:Script>
    <mx:Panel title="Net Promoter By Quarters" width="500"
    height="350" x="31" y="34">
    <mx:ColumnChart id="mychart"
    dataProvider="{netPrByQtrData}"
    showDataTips="true"
    height="250"
    width="450" type="stacked">
    <mx:horizontalAxis>
    <mx:CategoryAxis categoryField="quarter"/>
    </mx:horizontalAxis>
    <mx:series>
    <mx:ColumnSeries
    yField="bottom"
    xField="quarter"
    displayName="Bottom" >
    </mx:ColumnSeries>
    <mx:ColumnSeries
    yField="middle"
    xField="quarter"
    displayName="Middle" >
    </mx:ColumnSeries>
    <mx:ColumnSeries
    yField="top"
    xField="quarter"
    displayName="Top" >
    </mx:ColumnSeries>
    <mx:LineSeries
    yField="netPromoter"
    xField="quarter"
    displayName="Net Promoter" >
    </mx:LineSeries>
    </mx:series>
    </mx:ColumnChart>
    <mx:Legend dataProvider="{mychart}"
    direction="horizontal"/>
    </mx:Panel>
    </mx:Application>
    If I omit type="stacked" from
    <mx:ColumnChart id="mychart"
    dataProvider="{netPrByQtrData}"
    showDataTips="true"
    height="250"
    width="450" type="stacked">
    The code will work perfectly..But unfortunately its not a
    Stacked Chart...
    Is there any solution for this....Please reply your valuable
    suggestions ASAP.....
    Thanks in Advance..
    Subin

    Hello,
    In Flex Builder 4 and Above.
    For composite charts with Multiple column series and line series,
    Remove type = “stacked” property from Column Chart.
    and Add columnset like.
    <mx:series>
        <mx:ColumnSet type="stacked">
           <mx:ColumnSeries yField="aSales" displayName="A Sales" />
           <mx:ColumnSeries yField="bSales" displayName="B Sales" />
        </mx:ColumnSet>
        <mx:LineSeries yField="total" displayName="Total Sales"/>
    </mx:series>
    Cheers,
    SaM.

  • Drill Down between 2 stacked column chart with multiple rows.

    Hi,
    Can anyone please help me.
    1) i have to create stacked column chart with Region and cout of calls for previous 3 quarters.
    2) the 2nd stacked column should display the priority with the count of calls for the respective selection of region on the 1st chart..
    to achieve this,
    i'm using 2 stacked column charts and 1 lebel baseb menu.
    from this i can able to get the drill down from label based menu to 2nd stacked column chart but i couldn't able to done the same from 1st stacked coumn chart.
    Becoz my data is multiple row for each quarter.
    please suggest me to achieve the drill down between 2 stacked column charts.
    assume that my data like below.:
    coulmns for 1st stacked column chart : Region, Q2,Q3 &Q4
    Region                Q2                Q3               Q4
    Other              3658              3497               497
    NA - North
    America                3               3               1101
    APJK     1     4     597
    UK               324
    EMEA North     1     1     288
    CORPORATE     1     5     215
    LA -
    Latin America1     2     208
    EMEA     1          199
    EMEA South     1     1     169
    Coulmns for 2nd coumn chart:  Region, Priority, Q2,Q3,Q4 ()which is derived from 1st table.
    Region     Priority     Q2     Q3     Q4
    Other     D: End of Next Day     1568     1613     239
    Other     C: End of Day     983     893     119
    Other     A: 2 Hour     631     610     70
    Other     B: 4 Hour     396     318     56
    NA -
    North AmericaD: End of Next Day     2     2     514
    APJK     D: End of Next Day          3     297
    NA -
    North AmericaC: End of Day               284
    NA -
    North AmericaA: 2 Hour     1          170
    UK     D: End of Next Day               157
    APJK     C: End of Day     1     1     152
    Other     E: 3 - 5 Business Days     68     58     13
    EMEA North     D: End of Next Day          1     136
    CORPORATE     D: End of Next Day          4     107
    NA - North America     B: 4 Hour          1     104
    LA - Latin America     D: End of Next Day     1     1     86
    EMEA     D: End of Next Day               86
    UK     C: End of Day               85
    APJK     A: 2 Hour               79
    EMEA South     D: End of Next Day               72
    EMEA North     A: 2 Hour               69
    EMEA North     C: End of Day               56
    APJK     B: 4 Hour               55
    EMEA     C: End of Day     1          53
    LA - Latin America     C: End of Day               54
    UK     A: 2 Hour               49
    EMEA South     C: End of Day     1          44
    CORPORATE     A: 2 Hour          1     43
    CORPORATE     C: End of Day               44
    LA - Latin America     A: 2 Hour          1     42
    EMEA South     A: 2 Hour          1     32
    EMEA     B: 4 Hour               30
    UK     B: 4 Hour               30
    EMEA     A: 2 Hour               27
    EMEA North     B: 4 Hour     1          26
    NA -
    North AmericaE: 3 - 5 Business Days               25
    LA - Latin America     B: 4 Hour               23
    EMEA South     B: 4 Hour               20
    CORPORATE     B: 4 Hour               17
    APJK     E: 3 - 5 Business Days               13
    Other     F: 6 - 10 Business Days     6     4     
    Other     G: 11 - 20 Business Days     6     1

    Hi Srinivas,
    I'm using label based menu "filterd rows" only but i couldn't bind the drill down with the 1st stacked column chart.
    for mor details:
    1) i'm having 2 stacked coumn charts & 1 lebel based menu but eventhough i couldn't able to achieve.
    if i select the lebel based values then the 2nd stacked column charts is giving detailed valus but if i keep my mouse on the 1st stacked column chart the there is no changes on the 2nd chart..
    somewhere i'm mising the binding data between 1st stacked coumn chart & lebel based menu on drill down part.
    Becoz i'm having multiple rows. so can you please try your and send me the xlf file using your concept.

  • Help Creating Dynamic Stacked Column Chart with Multiple Criteria

    Hi all. Im new here and hoping you can help.  I have a dashboard Im trying to rebuild from scratch (our computer had a meltdown and we lost all our files). I did not build the dashboard initially so Im trying to recreate it from the flash file we were able to recover. I have come across a chart that I just cannot figure out how to do.  I can figure out how to write an array in the Excel sheet that pulls the data into a table the way I need it to be but found out after I wrote that that Xcelcius doesn't support arrays so all my data disappears when I go into preview mode (which is especially frustrating since I can see the chart working fine in design mode).  Anyway this is what the data table looks like
    Month         Year            Company      Positive #          Negative #         Neutral #          Positive %       Negative %      Neutral %
    October      2011            CompanyA      1234                1234                 1234                 10                    10                    10
    October      2011            CompanyB      1234                1234                 1234                 10                    10                    10
    October      2011            CompanyC      1234                1234                 1234                 10                    10                    10
    October      2011            CompanyD      1234                1234                 1234                 10                    10                    10
    November  2011            CompanyA      1234                1234                 1234                 10                    10                    10
    November  2011            CompanyB      1234                1234                 1234                 10                    10                    10
    November  2011            CompanyC      1234                1234                 1234                 10                    10                    10
    November  2011            CompanyD      1234                1234                 1234                 10                    10                    10
    December  2011            CompanyA      1234                1234                 1234                 10                    10                    10
    December  2011            CompanyB      1234                1234                 1234                 10                    10                    10
    December  2011            CompanyC      1234                1234                 1234                 10                    10                    10
    December  2011            CompanyD      1234                1234                 1234                 10                    10                    10
    The original chart was built so that you would choose the month from a combo box and then the company names would show up along the X axis with their % amounts shown in the stacked column.  I know how to make a combo box work and I know how to make a stacked column chart work with static data.  I cannot for the life of me figure out how to get it to work so that when you choose the month from the combo box it filters the data.  I've tried filtered rows but I'm just missing some information that makes it work and I can't figure out what that information is.  It has to be able to get the month/year combo from the combo box and then go to the table, filter it by month and year and then create a multi-row table of data with just the company and the percent values.  Any help would be greatly appreciated!

    Which connection you are using?
    IF quite difficult if you are working under static data.

Maybe you are looking for

  • Material Description Field to be in Display mode.

    Hi Gurus, I am trying to make the Material Description field in the Display mode for PR. I changed the screen layout value into display for screen variants ME51N and also for NBB. Then also it is not getting effected. please advice on this issue on w

  • Migration Assistant Problem

    Bought a new iMac 24" 2.66 GHz. Tried to run Migration Assistant via Firewire from old iMac (Power PC G4 OSX 10.4.11). Tried it in the initial set up but didn't work. Then tried it after initial set up of new Mac and was prompted that I needed to cha

  • How do I get recordings onto my computer with MediaMonk

    I'm using MediaMonkey as my media manager and I have some recordings on my Vision: M that I want to put onto my computer. Problem is, when I try to move them, it tells me that it can't find the files. How do I get them on my comp?

  • Issue going online even though ip address is correct

    Hi, I recently bought a 13" macbook pro and I am having issues connecting online. My other PCs that I use are able to connect with my Belkin router via Wifi, but my MBP cannot. On the MBP I get a valid ip while I connect via Wifi: 192.168.2.3 It find

  • Testing IDOC WE19

    Hi All I want to use standard IDOC DELVRY03, how can I test this IDOC on we19, it asks for IDOC number. Can any body expalin me how can I use this standard IDOC. Actually for T-code VL03n when th Post goods issue is done, I want this IDOC to be gener