Chart Drill Down Data

Hi guys,
I am trying to create a drill down capability for a column
chart in my application. I am using the HTTPService to get the data
in from an external XML file, but I am having problem getting in
the external data needed when the user selects a column. In simple
version,
1st level consisit of year(x axis) against amount(y axis)
2nd level,- when user clicks the column representing a year,
the column chart to be produced consist of Month(x-axis, i.e. Jan,
Feb, Mar, etc) against Month count(y-axis,) for the selected
year

Nothing to do with excel file, just the logic with combo box.

Similar Messages

  • Bubble Chart drill down issues

    I have a filter and a bubble chat with 7 series. The chart is showing up bubbles with different size and colors as per the settings when I chnage the filter
    The problem is with drill down
    I want to drill down to a Bar chart when I click on bubbles. Each bubble click will drill down data into that bar charchart as a pop up. I know how to do it as I have done it in the past with other components.
    But when I use drill down with bubble chart, I have to assign separate destination area for each series which makes it difficult to drill down into a chart. What i want is the bubbles to drill down data into a single row so that I can map the Y-axis of chart component to that row and X axis as fixed labels. But I am not able to do that. Moreover once inserted there is no way to clear the destination cells.
    However if I use data in range options in bubble chart then I can use drill down as I get only one series in that case. But that method also has limitations.
    1. I am not able to display series name on the bubbles. It doesn't make any sense to show bubbles without any labels.
    2. All bubbles are of same color.
    Is it possible to overcome above two limitations when using data in range option?
    Thanks

    Hi Tarun,
    as a workaround you could define a special area as mapping area for the X-Y-chart.
    This area is filled via excel formulas from the bubble chart drill down destinations. You can concatenate the values from the drill down target areas, like "=A4&A5" etc. Make sure to clear all cells except the actual drill down target cells.
    Hope this helps,
    best regards
    Heiko

  • Stacked Column Chart drill down

    I have a stacked column chart. Data is dynamic. Sometimes one column will have 0 as value.
    I need to do a drill down on the ones which has value. In order to do a drill down everytime, I don't want my drill down to be tied to a specific serie...
    How can I do that?
    Thanks,
    Wen

    Hi Wen:
    Let me do a quick demo to you so you can learn how drill down for stacked column chart works
    1. Create a new stacked column chart.
    2. Choose data binding "By Range" and "Data In Columns" binds to range "A1~C2", which has range data as following:
    a, 1, 2
    b, 3, 4
    3. After finishing step 2, there will be two series created (Series 1, and Series 2)
    4. Open drill down tab and check "Enable Drill Down".
    5. Choose "Insert Type" as "Row".
    6. Click "Series 1".
    7. Bind "Source Data" to range "D1~E2" which contains value as following:
    11,12
    13,14
    (these are the drill down value you want to insert)
    8. Bind "Destination" to "D3~D4" (empty cells)
    9. Create another component "Grid" under "Other" folder.
    10. Bind grid data to "D3~D4" to present the drill down data.
    11. Preview the xlf file, can click values in series 1, you will see the drill down result. (Grid will be refreshed with new drill down data)
    Hope the demo above can help you in your practice, also you can refer to help documents for more information. Let me know if you have any other questions!
    Thanks!
    Bill

  • Bubble chart drill down

    HI All,
    We have 4 levels like(Continent,Country,State,Dist). Our business Req is like drill down from entity at  one level to another entity at the following level.Each Entity has one to many relation ships with entities in the subsequent levels.
    For Ex: One Continent will be linked to many Countries etc..
    We are trying to find a solution where a click on particular continent will point to a dataset / Range of values.....
    Could any one tell us how to define a range of values....
    Thanks In Advance
    Nithila

    Hi Nithila Siva  ,
    This is quite same as all other chart drill down.
    Here is the explanations:
    You have 4 levels drill downs :Continent,Country,State,Dist that means you can have 4 bubble charts in the canvas.In the First chart display all the continents(ex: Asia,Africa etc..) select asia from the first chart it should display all the contries in the ASIA (india ,pakistan etc..) in the second chart and follow the same for rest 2 charts.
    How can we do this:
    From your raw data you need to filter the data and point it to different charts. you can do this by writing formulas in the excels ex : point the data of all the continents in the first chart and in the properties tab-> enable drill down->select row-> in the source give all the continents and point the destination to one particular cell,so if you select a continent that value will come and sit in the destination cell and then you have to write formulas comparing the destination cell.
    Hope this helps.
    let me know if you need any explanation on this.
    Cheers,
    Sudharam

  • Pie chart - drill down/up with HierarchicalCollectionView

    y'ello,
    I started to build really simple pie chart with drill down data feature. I decided to use hierarchicalCollectionView, to access children even parent of clicked item, but one problem I realized right now is that pie chart displays only data type ArrayCollection, and hierarchicalVollectionView and method openNode() can be used only Array data type, so when I debugged I realized that can not use openNode(hitData.item)  wih ArrayCollection data type b'cuz flash player pop-ups error window.
    Please, chcek short source code. I thought I can make hierarchy from ArrayCollection but can not use openNode() method that next I need this method later access parent or children. Simply when I click on one wedge, drill down, again, when I click, again drill down...when I click Ctrl+click get one level back then again and again....plese help me gurues
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
        <mx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                import mx.charts.HitData;
                import mx.charts.events.ChartItemEvent;
                import mx.collections.HierarchicalData;
                import mx.collections.HierarchicalCollectionView;
                [Bindable]
                public var cars:ArrayCollection = new ArrayCollection([
                    {type:"BMW", t_count: 150, children:[
                        {type:"1 class", t_count: 18, children:[
                            {type:"Coupe", t_count: 34},
                            {type:"Touring", t_count: 42},
                            {type:"Compact", t_count: 8}
                        {type:"3 class", t_count: 14, children:[
                            {type:"Kabriolet", t_count: 12},
                            {type:"Coupe", t_count: 34},
                            {type:"Touring", t_count: 42},
                            {type:"Compact", t_count: 8}
                        {type:"5 class", t_count: 7, children:[
                            {type:"Kabriolet", t_count: 12},
                            {type:"Coupe", t_count: 34},
                            {type:"Touring", t_count: 42},
                            {type:"Sedan", t_count: 8}
                        {type:"6 class", t_count: 15, children:[
                            {type:"Kabriolet", t_count: 12},
                            {type:"Coupe", t_count: 34},
                        {type:"7 class", t_count: 8, children:[
                            {type:"Kabriolet", t_count: 12},
                            {type:"Coupe", t_count: 34}
                        {type:"X3 class", t_count: 22, children:[
                            {type:"Sedan", t_count: 11},
                            {type:"Coupe", t_count: 9},
                            {type:"Touring", t_count: 5},
                            {type:"Compact", t_count: 17}
                        {type:"X5 class", t_count: 9, children:[
                            {type:"Sedan", t_count: 33},
                            {type:"Coupe", t_count: 18},
                            {type:"Hatchback", t_count: 7}
                        {type:"X6 class", t_count: 11, children:[
                            {type:"Coupe", t_count: 18},
                            {type:"Combi", t_count: 31},
                            {type:"Hatchback", t_count: 8}
                    {type:"Mercedes", t_count: 120, children:[
                        {type:"A class", t_count: 5},
                        {type:"B class", t_count: 12},
                        {type:"CLS class", t_count: 18},
                        {type:"CL class", t_count: 23},
                        {type:"C class", t_count: 12},
                        {type:"E class", t_count: 19}
                    {type:"VW", t_count: 320, children:[
                        {type:"Passat", t_count: 10},
                        {type:"Polo", t_count: 25},
                        {type:"Golf", t_count: 45},
                        {type:"Touareg", t_count: 15}
                //HCV from hierarchical data
                private var hView:HierarchicalCollectionView = new HierarchicalCollectionView(new HierarchicalData(cars));
                //event handler
                private function drillDownUp(event:ChartItemEvent):void{
                    if(event.hitSet && event.hitSet.length){
                        //DRILL UP
                        if(event.ctrlKey){
                            var hitItem:HitData = event.hitSet[0];
                            var parent1:Object = hView.getParentItem(hitItem.item);
                            var parent2:Object = hView.getParentItem(parent1);
                            if(!parent2){
                                myPieChart.dataProvider = hView.source.getRoot();
                            else{
                                myPieChart.dataProvider = hView.getChildren(parent2);
                        //DRILL DOWN
                        else{
                            var hitItem:HitData = event.hitSet[0];
                            if(hitItem.item.hasOwnProperty("children")){
    //                            hView.openNodes(hitItem.item); //here is problem!!
                                myPieChart.dataProvider = hView.getChildren(hitItem.item);
            ]]>
        </mx:Script>
        <mx:Panel title="PieChart DDD Test - Trh predaja automobilov - 2009">
            <mx:PieChart id="myPieChart"
                         dataProvider="{cars}"
                         itemClick="drillDownUp(event)"
                         showDataTips="true">
                <mx:series>
                    <mx:PieSeries field="t_count"
                                  nameField="type"
                                  labelField="type"
                                  labelPosition="inside"/>
                </mx:series>
            </mx:PieChart>
            <mx:Legend dataProvider="{myPieChart}" direction="horizontal"/>
        </mx:Panel>
    </mx:Application>

    Hi Jan,
           thanks for reply,sorry i am quite new in this forum not familiar with tabs and navigation,can you please elaborate/steps to find the business card
    thx
    Anwy

  • Xcelsius Bubble Chart - Drill Down Issues

    Hi ,
    Product : Xcelsius SP 3
    I have a bubble chat with 7 series. The chart is showing up bubbles with different size and colors as per the settings.
    The problem is with drill down
    I want to drill down to a X-Y chart when I click on bubbles. Each bubble click will drill down data into that X-Y chart as a pop up. I know how to do it as I have done it in the past with other components.
    But when I use drill down with bubble chart, I have to assign separate destination area for each series which makes it difficult to drill down into a chart. What i want is the bubbles to drill down data into a single row so that I can map the Y-axis of chart component to that row and X axis as fixed labels. But I am not able to do that. Moreover once inserted there is no way to clear the destination cells.
    However if I use data in range options in bubble chart then I can use drill down as I get only one series in that case. But that method also has limitations.
    1. I am not able to display series name on the bubbles. It doesn't make any sense to show bubbles without any labels.
    2. All bubbles are of same color.
    Is it possible to overcome above two limitations when using data in range option?
    Please help if someone has encountered this issue. There has to be some solution for this.
    Thanks,
    Tarun

    Hi Tarun,
    as a workaround you could define a special area as mapping area for the X-Y-chart.
    This area is filled via excel formulas from the bubble chart drill down destinations. You can concatenate the values from the drill down target areas, like "=A4&A5" etc. Make sure to clear all cells except the actual drill down target cells.
    Hope this helps,
    best regards
    Heiko

  • Issues with multilevel pie chart drill down with push button

    I am new to Xcelsius. I am trying to build a multilevel pie chart drill down (one pie chart drilling down to another etc) and I am able to achieve that. Now I want to add a Back Button using Push Button so that I can go up.  When I preview, the Push Button goes into two state and I have to double click to go back.  Can anyone tell me what I am doing wrong. I am using the latest Xcelsius. [The source code is here|http://www.woofiles.com/dl-195360-3lTyVM8Z-piechartdrilldownwithpushbutton.xlf]
    Thankyou.

    Hi Murali
    This is exactly the same what i tried to do,
    Drill down to 4 levels State -> City-> store etc with 4 pie charts and similar push button to close each level to
    go back to previous chart, first run from 1 to 4 works fine, then after closing all the levels and when i am at the pie chart 1
    if i click any pie slice it will jump to Pie chart 4 straight,
    I tried tracking the issue, all i could find is some how the previous dynamic visibility values are back even after erasing
    the data with the PUSH button (Destination cell insertion with blank or 0).
    did you find a solution for this issue ?
    Thanks
    Chandra

  • Chart drill-down support

    Hi, guys
    Is chart drill-down supported for the web app  in CR 2008/CR XI  and how is it activated ?
    regards, TST

    Hi
    I'm  using CR XI R2 for the web site
    The drill-down feature works fine in the preview mode in CR 2008 but not in the CR viewer. at the web site.
    I sort out the way to activate the zoom feature by set autodatabind  property to false.
    But I´m not able to activate the drill-down feature for the chart at the web site
    regards, TST

  • SharePoint PPS Hide null or blank value in performancePoint chart drill down.

    Hi,
    I am using SharePoint Performance Point Service. Hide null or blank value in Performance Point chart drill down.
    Thanks & Regards
    Poomani Sankaran

    Hi Hyaron,
    I am unable to reproduce the issue in my test environment. How did you add the drilldown feature? Were you doing that by setting visibility of the column or of the group? Please ensure to add the drilldown functionality by set the visibility of the workgroup
    from the Grouping Pane in the Report Designer.
    How did you add the Interactive Sorting on the headers of the two columns? Based on the drilldown functionality, the Interactive Sorting on the second column doesn’t work. So, you can move the Interactive Sorting on the second column. When configuring the
    Interactive sorting on the first column, you should set the parent group to sort, and sort by the field that the parent group groups by.
    Hope this helps.
    Regards,
    Mike Yin
    TechNet Community Support

  • Limits the PerformancePoint Analytic Chart drill down dimensions

    Actually my requirement is, how to limits the Performance Point Analytic Chart drill down dimensions.
    I am using SQL Server 2008 R2. Is it possible to achieve it in SQL Server 2008 R2 without 
    Perspective?
    I should not change my system from SQL Server 2008 R2 to SQL Server 2012 for
    Perspective.
    Is there any other way to achieve it.
    Thanks in advance.
    Thanks & Regards
    Poomani Sankaran

    Hi Poomani,
    In your scenario, you create a Performance Point Analytic Chart, now the requirement is that limit the Performance Point Analytic Chart drill down dimensions, right?
    As you know, to limit the drill down dimensions, we can created a perspective in the cube that limited the visible dimensions to those couple of dimensions. In your scenario, you said that you need change my system from SQL Server 2008 R2 to SQL Server 2012
    for Perspective, right? We can create a Perspective on SQL Server 2008 R2 version. The links below might help.
    http://technet.microsoft.com/en-us/library/ms345316(v=sql.105).aspx
    http://www.jamesserra.com/archive/2011/06/performancepoint-wish-list-change-a-datasource/
    If I have anything misunderstand, please point it out.
    Regards,
    Charlie Liao
    TechNet Community Support

  • SharePoint Performancepoint Analytic chart drill down

    Hi,
    Anybody can tell me?
    In SharePoint performance point analytic chart drill down.
    The drill down showing all the dimensions from the datasource but instead of that. I would like to show only the required dimensions only. How to configure it?
    Is it possible?
    Thanks & Regards
    Poomani Sankaran

    Hi Poomani,
    According to your description, my understanding is that you want the drill down to show only the required dimensions.
    Here is an article about this issue, please check if it is useful:
    http://denglishbi.wordpress.com/2012/03/28/using-perspectives-with-performancepoint-services/
    In addition, as this issue is related to SSAS, I suggest you create a new thread on SQL forum, more experts will assist you with this issue.
    SQL forum:
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/home?category=sqlserver
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Pie-chart drill-down

    Hi,
    I have created a pie chart on my report. I want it so that the user can double click on a segment of the pie and drill-down to view some detailed logs. The logs just being a list of details from the records like "name" "age" etc.
    I have read some stuff on subreports and linking, but im not quite sure wether this is the way to do this or if there is an easierway without all that subreport linking malarchy.
    Is there an easier way? and if so, could you please provide me with a step-by-step as im fairly new to this whole crystal reports thingamajig. Thanks
    J

    Hi James
    You can get a drill down on your pie chart once you apply groups in your report and create chart based on those groups.
    For example: I create a report to display the last year sales for all the cities in a country. I want a drill down onmy pie chart for the cities. I do the below:
    1. I create two groups on Contry and City.
    2. Now I create a pie chart. In Data tab of Chart expert select the group for City in On change of, and show value Last year sales.
    3.Place the chart on group header of Country group.
    4. Refresh the report, now I would get the drill down for the cities for every country in the Pie chart.
    For more information please refer to Crystal Reports Help.
    Hope this helps!!!
    Regards
    Sourashree Ghosh

  • Org Chart Drill Down Dashboard

    I have a requirement where I need to have an Org Chart display of data. The requirement is to get the money spend by the whole department. Then when you drill down on the department the dashboard has to display all the managers under that department. When the user clicks on the managers name the dashboard has to display the amount spend by the manager. When the user clicks on the managers name then the individual details has to be displayed.
    I am basically looking like an ORG CHARD display dashboard. What is the easiest way to do this? I want the dashboard to shrink if there is no drill down and expand when itu2019s drilled down. Any ideas will be of great help. I want to do this using crystal Xcelcius.

    Hi Srinivasa,
    Xcelsius is mainly recomended for pure Dashboard Application where the intention is to view summarized data at a single snapshot. Usually drilldown reports are built using WEBi. These WEBi reports can be linked to the Xcelsius Applications.
    This is one way you can acheive your requirement.
    Such Drilldown reports are also possible through Xcelsius but a lot of data massaging and parameter maintaining at Excel level is required.
    All the Best.
    Bhavna.

  • Omniportlet Chart Drill Down Help

    I have a bar chart and am able to drill down to the correct dataset when clicking on a bar and passing the value in the URL. However, if I click two different bars to compare the two data sets and page through the data I run into problems. For example, I click bar 1 and it launches a new window with the expected data. I then leave that window open and click bar 2 and it launches another window with the expected data. If I page through the data from bar1, the dataset on bar 1's page changes to bar 2's data.
    This is what my page definition looks like for the launched drill down page.
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
    version="10.1.3.41.57" id="WOrderHoldStatusPageDef"
    Package="view.pageDefs" EnableTokenValidation="false">
    <parameters/>
    <executables>
    <iterator id="USA_LIEN_HOLD_PRTL1Iterator" RangeSize="-1"
    Binds="USA_LIEN_HOLD_PRTL1" DataControl="AppModuleDataControl1"/>
    <invokeAction id="callExecuteWithParams" Binds="ExecuteWithParams"
    Refresh="prepareModel"
    RefreshCondition="#{adfFacesContext .postback == false}"/>
    </executables>
    <bindings>
    <table id="USA_LIEN_HOLD_PRTL1" IterBinding="USA_LIEN_HOLD_PRTL1Iterator">
    <AttrNames>
    <Item Value="LhId"/>
    <Item Value="LienHold"/>
    <Item Value="PartNo"/>
    <Item Value="Status"/>
    <Item Value="Effectivity"/>
    <Item Value="HoldLienStatus"/>
    <Item Value="HoldLienType"/>
    <Item Value="WorkLoc"/>
    <Item Value="ChgAuthNum"/>
    <Item Value="Reason"/>
    <Item Value="OperNo"/>
    <Item Value="Program"/>
    <Item Value="EngGroup"/>
    <Item Value="OrderNo"/>
    <Item Value="SchedStartDate"/>
    <Item Value="Type"/>
    <Item Value="LienContinue"/>
    <Item Value="LienComplete"/>
    <Item Value="OrderTitle"/>
    <Item Value="Title"/>
    <Item Value="OrderStatus"/>
    </AttrNames>
    </table>
    <action id="ExecuteWithParams" IterBinding="USA_LIEN_HOLD_PRTL1Iterator"
    InstanceName="AppModuleDataControl1.USA_LIEN_HOLD_PRTL1"
    DataControl="AppModuleDataControl1" RequiresUpdateModel="true"
    Action="95">
    <NamedData NDName="Hold_Status" NDType="java.lang.String"
    NDValue="#{param.Hold_Status}"/>
    </action>
    </bindings>
    </pageDefinition>
    I realize that the ExecuteWithParam is executing with the #{param.Hold_Status} that is populated from the URL. I figured that is why I see bar 2's data when I page through (because param.Hold_Status now equal bar 2's value). My question is, how else can I implement this to avoid running into this situation?
    By the way, I am using JDev 10.1.3.3.
    Thanks,
    Jessica
    Edited by: user579655 on Jul 22, 2009 11:47 AM

    Yes,
    unless the defect also shows when running outside of the portlet
    Frank

  • Chart drill-down based on series

    I have a flash chart with multiple series, which are all retrieved by a single query, due to performance issues. Is there any way to build a drill-down link, which is dependent on series that user clicks. I guess I am looking for a system variable to reveal the series id, user clicks.

    I'm having the same issue. Can you respond with a simple example of what to pass in the link? The following example of a flash chart on OTN (as well as the other examples I've found) only pass null in the link.
    SELECT NULL link,
    sales_month value,
    revenue "Hardware"
    FROM (
    SELECT TO_CHAR(o.order_date,'Mon YY') sales_month,
    SUM(oi.quantity * oi.unit_price) revenue,
    TO_DATE(to_char(o.order_date,'Mon YY'),'Mon YY') sales_month_order
    FROM OEHR_PRODUCT_INFORMATION p,
    OEHR_ORDER_ITEMS oi,
    OEHR_ORDERS o,
    OEHR_CATEGORIES_TAB ct
    WHERE o.order_date <= (trunc(sysdate,'MON')-1)
    AND o.order_date > (trunc(sysdate-365,'MON'))
    AND o.order_id = oi.order_id
    AND oi.product_id = p.product_id
    AND p.category_id = ct.category_id
    AND ct.category_name like '%hardware%'
    GROUP BY TO_CHAR(o.order_date,'Mon YY')
    ORDER BY sales_month_order
    I can pass page items with no problem but trying to pass data from the result set the chart is based on it proving difficult.
    None of the syntax I've tried seems to pass the content of the "value" field the flash chart is based on to the new page. I've tried any of a number of ways (see below) but none of them pass the value.
    The following passes the literal "value" to page 64
    '/pls/apex/f?p=&APP_ID.:64:&SESSION.::&DEBUG.:RP,64:P64_FROM_DATE,P64_CURR_STS,P64_PARAM:&P63_START_DATE.,2,value'
    The following generates an error...
    '/pls/apex/f?p=&APP_ID.:64:&SESSION.::&DEBUG.:RP,64:P64_FROM_DATE,P64_CURR_STS,P64_PARAM:&P63_START_DATE.,2,:value'
    The following generates an error...
    '/pls/apex/f?p=&APP_ID.:64:&SESSION.::&DEBUG.:RP,64:P64_FROM_DATE,P64_CURR_STS,P64_PARAM:&P63_START_DATE.,2,&value.'
    The following generates an error (really thought this was the answer)
    '/pls/apex/f?p=&APP_ID.:64:&SESSION.::&DEBUG.:RP,64:P64_FROM_DATE,P64_CURR_STS,P64_PARAM:&P63_START_DATE.,2,' || value
    Some targeted help would be most appreciated.
    Regards,
    Mike

Maybe you are looking for

  • Extended Withholding Tax - Localization Brazil - Withholding Customer

    We have the Withholding Tax on receipt of customers. The register settings in the client is correct. We are having problems in receiving compensation therefore is not accounting the Withholding Tax , but was attributed to the accounting codes and cat

  • PO tables

    I need to read a list of Open Purchase Orders(for which I/R's have not been done completely) created or changed in a particular date range. Can anyone let me know the relevant tables where I can read this data from. Any help would be appreciated. Tha

  • Find Field on Forms of related lookup columns

    Dear SharePoint Comunity I created several lists in SharePoint 2013 and link the Information using lookup columns. However, if a list has over 100 entries it is almost impossible to work with the resulting Dropdown fields. I researched quite a bit an

  • Query...Little tricky!

    Hi, I have following columns in my query: Cust_No     item_name qty 123     Item1 100 123     Item2     200 234     Item1     300 234     Item2     400 Case 1: Here Item1 and Item 2 are standard. There will be no more Items. I want the output like be

  • Account Disabled by Apple Staff

    My account was disabled by Apple Staff as they misunderstood my complaint. Now they are telling me they cannot enable it as ACCOUNT SECURITY can only do it. They have told me to call ACCOUNT SECURITY to get the account enabled again but the numbers t