Drill-down using chart swapping or overlaying

I am working on a pie chart which supports drill-downs. The
idea is that when a user clicks on a chart sector a column chart is
shown on top of the pie chart showing further distribution of
values in the selected sector.
My question is what is the right way to implement this kind
of pie chart supporting drill-downs?
Should I define both charts in MXML and then dynamically make
one invisible and the other one visible? How do I swap the charts?
Any sample code will be greatly appreciated.
Thanks.

I just re-read this and realize you want it on the same page. Same logic applies. Create a hidden item, a second chart region taking in the parameter from the first, and set it to show only when the hidden item is not null.
Let me know what you think:
http://htmldb.oracle.com/pls/otn/f?p=20332:1
Code for the first chart is:
select 'f?p='||:APP_ID||':1:::::P1_DRILLDOWN:'||cu.customer_id,
       cu.cust_first_name || ' ' || cu.cust_last_name,
       count(ord.order_id)
  from demo_orders ord,
       demo_customers cu
where cu.customer_id = ord.customer_id
group by 'f?p='||:APP_ID||':1:::::P1_DRILLDOWN:'||cu.customer_id,
cu.cust_first_name || ' ' || cu.cust_last_name2nd Chart:
select null,
       product_name,
       count(ite.product_id)
  from demo_orders ord,
       demo_order_items ite,
       demo_product_info pro
where ord.order_id = ite.order_id and
       ite.product_id = pro.product_id and
       ord.customer_id = :P1_DRILLDOWN
group by product_nameModify as necessary.

Similar Messages

  • Drill down using Charts in BI 7.0

    Hi,
    I want to check whether drill down option is possible using Charts(WAD reports) in BI 7.0
    Solved the issue....
    Message was edited by:
            bwuser

    hi
      plz share with us whether it is possible r no
    thanks & regards
    kk

  • 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

  • Can I navigate and drill down in chart and pivot table?

    In the fact, the end user want to navigate to a detail report request when drill down to the final level.
    I know when use table, I can navigate on data and drill down on column.
    But in chart and "pivot table", I do not find the option of interaction to achieve this.
    Any suggestion?

    You can drill down in charts but I just saw you can't in pivots (strange because I assumed that that must be possible)
    However, you can always use guided navigation!

  • Drill down on Chart in CR XI R2

    HI
    I am using Crystal Report XI R2 to design reports. And we are inviking CR through Java API(GWT).
    Does Crystal report supports Drill Down on Chart (Clicking on pie should bring up the related detailes section).
    I could see it n designer , But CR Viewer is displaying chart as image so I do not see Drill down enablen in viewer.
    Do we need to do use some API or Setting to enable in viewer. Or I am doing something wrong.

    While installing, you were asked to enter a MySQL root user and a BusinessObjects user. You can install MySQL Administrator and Query Browser to log on to your DB.
    http://dev.mysql.com/downloads/gui-tools/5.0.html
    I don't think I understood your question completely though, if you installed Crystal Reports Server with MySQL as CMS database, the installation process will have configured and set up MySQL as your CMS db automatically.

  • Dashboard Drill Down in Chart with Tab-Linking

    Dear All,
    after searching a lot i couldn't find a thread discussing these requirements.
    i have 3 views in 3 tabs in one dashboard, i want to drill down from chart in Tab 1 to the Tab 2 which contain the result in a detailed level.
    is this kind of drill down possible? and how to achieve this?
    thanks,
    BR,

    thanks for the suggestion sjain ... but I've seen ppl here on the forums saying that it doesn't work in cross tab...So I'm not sure if that can be done but I'll try .

  • Drill down pie chart using SVG

    Having read several posts in this forum regarding SVG, pie charts and drilling down, I get the impression that it is possible, using the "link" column in the chart query, to drill down to another page.
    My requirement is similar in that given a pie chart, the user can click on one of the sections of the pie and see more detail in another pie chart. The difference is that the page should not change (ie: other graphics and content ought not change when the pie chart is clicked).
    Has anyone worked out a solution for something like this?
    Is it, for example, possible to, on clicking the pie chart, have a conditional display set for a previously hidden chart and hide the original chart?
    Your replies are appreciated.

    I just re-read this and realize you want it on the same page. Same logic applies. Create a hidden item, a second chart region taking in the parameter from the first, and set it to show only when the hidden item is not null.
    Let me know what you think:
    http://htmldb.oracle.com/pls/otn/f?p=20332:1
    Code for the first chart is:
    select 'f?p='||:APP_ID||':1:::::P1_DRILLDOWN:'||cu.customer_id,
           cu.cust_first_name || ' ' || cu.cust_last_name,
           count(ord.order_id)
      from demo_orders ord,
           demo_customers cu
    where cu.customer_id = ord.customer_id
    group by 'f?p='||:APP_ID||':1:::::P1_DRILLDOWN:'||cu.customer_id,
    cu.cust_first_name || ' ' || cu.cust_last_name2nd Chart:
    select null,
           product_name,
           count(ite.product_id)
      from demo_orders ord,
           demo_order_items ite,
           demo_product_info pro
    where ord.order_id = ite.order_id and
           ite.product_id = pro.product_id and
           ord.customer_id = :P1_DRILLDOWN
    group by product_nameModify as necessary.

  • Problem with Drill down using Pie chart

    Hi all,
    I have a dashboard which displays sales according to product category in which I'm using combo box for category.
    Based upon the selection the corresponding products are displayed in the Pie chart and when I click a particular
    product its total sales value should be displayed in a Guage.
    The problem is if for one category there are 10 products the pie chart is showing only 5 labels if drill down option is checked
    and if its not then its showing all the products......
    What could it be ??
    Thanks
    John

    Hi John
    Is this fixed now?
    Regards
    [Charles|http://www.reportex.co.uk/xc_dataload.html]

  • MSChart drill down pie chart

    Hi,
      I need to show MSchart Pie chart drill down to show expanded pie chart for the selected pie  in C# ASP.net

    Please refer to this article: http://www.codeproject.com/Articles/65803/A-Guide-to-using-MSChart-for-NET. Perhaps it will help you get started.

  • Drill Down Flash Charts dont refresh in IE

    Hi Friends,
    I am facing a typical issue when I have drill down charts in IE.
    To mimic the scenario that I am facing in my project I have created a sample project in my workspace ntekupal with login guest/apex_demo. Run the application project Emp Dept Dashboard.
    Note : Make sure you use IE to reproduce this issue
    Issue Reproduction :
    1) Select 'Accounting' department from the Departments bar chart by double clicking it(this is one more issue in IE which really annoys me).
    2) Navigate to Employees chart and observe that the Deptno text box shows '10' with the list of employees in the bar chart for Deptno - 10.
    3) Go back to previous page using breadcrumbs.
    4) Select 'Research' and it would again put you back to Employees page showing employee list for Deptno - 20.
    5) Now repeat step-3 and select again 'Accounting'
    6) Observe that the employees shown are not for Accounting Department. It is still showing for Research but the deptno text box would show the value 10(which is correct).
    7) Refresh the page then the employee bar chart would display the actual employees in Research deptmnt.
    Now run the same application in Mozilla and it works perfect.
    I know this could be some caching issue in IE but not sure how to fix this.
    It really freaks me out and my users do not wan to use Mozilla. In my project I am using a bunch of flash charts(bar & pie).
    I appreciate if I can get some of your precious inputs on this situation.
    Thanks,
    Raj.

    I have to, respectfully, take the opposite point of view on this topic. It is very much the applications responsibility to communicate to the browser that the page is dynamic. There are even meta tags specifically for this purpose.
    That said, I concur to the true underlying concern of the above two posts that you would not want a page updating any IE global settings.
    There are commonly two solutions used to solve page caching issues:
    1) There are meta tags shared disparately by certain browsers to disable cacheing, set expiration dates, and similar activities. Each browser honors the settings differently, however, you can safely "stack" several versions together and there are web-sites that suggest the appropriate combination to hit the major browsers.
    The tags to look for are CACHE-CONTROL, EXPIRES, REVISIT, and possibly others. Look them up under each browsers developer documentation as some variation exists in usage. The latter two are for search engines, but several of the browsers will use them in normal page hits.
    That said, IE inconsistently honors these tags, even from version to version, so,
    2) The end-all hack solution is to include a random value in the URL to create a unique URL on each attempt to access the page. Normally this can be achieved through a page or application item that is update on every page view and is passed on the URL line.
    This solution is also commonly used because Proxy's may not honor the tag and so will continue to re-send the proxy version every time the browser requeries.
    Whether this is possible in the Chart drill down I do not know as I haven't used this feature yet, but these are the two solutions you will find browsing the web against page caching.
    I have invariably always had to resort to (2) to get absolutely real time data, unless I am in a corporate environment that used a standard and stable version of the browser.
    Under no circumstances would I prefer to set the IE's always retrieve latest page setting, as this affects every page that IE requests.
    Hope this is helpful,
    Barney

  • Adding multiple views to a drill down pie chart

    Hi,
    I'm currently using OBIEE 10g and have a problem when drilling down on a pie chart.
    I have a dashboard named spending analytics and it shows in a pie chart, spending by different categories (airlines, automotive, etc).
    When i click on the Airlines slice of the whole pie chart i drill down to a pie chart with the spending from different airlines (American, United, etc)
    However, I want to have another level of drill down where i can choose an option as speding by state as well. So, spending by state should be part of the airlines.
    Then i should have Total Spending by category(airline) > Spending by type(United) > Spending by state(PA,DC, etc)
    How can this be done?

    Hi User,
    Drill Down from Pie chart can be done.
    Create a Pie chart report intially, add the same to compound layout.
    Now, edit the pie chart.
    You can view, Additional charting options icon. Click on it.
    Now click on 3rd tab -> Interaction.
    Select Navigate.
    Add Navigation Target. Here, Browse the detail report and add the caption.
    Here, you can add as many detail reports as you like.
    I have created the same and added 3 different detail reports. It worked for me. Even, i used 10g.
    I hope the same with you.
    Award some points if it helps you and resolves your issue :)
    Close the thread.

  • Drilling-down in charts - can someone explain the behavior please

    Hi guys,
    I'm trying to understand how a particular chart is drillable "Sample Sales".
    The report in question is 8020 from "03 Tiering and Distribution". I circled the report that I clicked on:
    !http://img407.imageshack.us/img407/4103/screen1c.jpg!
    Then, it took me to the more detailed view of the same report (8020):
    !http://img203.imageshack.us/img203/2144/screen2c.jpg!
    I checked the report and the Interaction property in "Additional Charting Option Menu" for this chart was set to Default. The measure that's being drilled-in in Percentile - and it also has Default in its interaction properties.
    So I guess I have several questions:
    1. How does this report drill to the more detailed level on the same report? (is this because everything is set to "Is Prompted")?
    2. Why does "Default" value allow for drill-down in the chart? I tried creating my own charts - and Default there doesn't trigger a drill-down at all, even though there's data on a lower level.
    3. Can you drill in-place and have some content to remain relatively static - and some other fields change? I saw a similar question before - where it was suggested to use more than 1 report in the Dashboard view. (instead of combining everything in compound view).
    Thank you

    For #2. I believe you did not create hierarchies in your rpd for those dimensions and measures you have on report.
    For # 3. I belive the first 3 reports in this dashboard are aligned horizantally inside one section of the dashboard and "Drill in Place" has been enabled on the section / these answer requests. Check the section properties. If you want this behavior, try each report embedded in different sections and enable drill in place for each section where you want to drill further but remaining content remains same.
    btw how did you paste your dashboard over here? Thats cool way of posting images.. appreciate your response.
    Thanks

  • Drill-down graphs/charts

    I am new to Crystal Reports.  I am using CR 2008.  I have a vision for a spider-web (radar) chart where I can click on a portion of the web to drill down into the data that makes up that portion of the report.
    Is this possible?  If so, generally, how should I conceive of accomplishing this?
    Mark

    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

  • Drill down using more than three items

    Is it possible to supply more than three parameters to the column link?
    I am making a drill down from summary report to the detail report, and I need to pass five parameters to the detail report. The list of items under
    Application Builder > Application X > Page Y > Report Attributes > Column Attributes > Link
    is limited to three items. Is there a way around this limitation?
    Thanks,
    Tim

    You need to change you link type from <b>Page In This Application</b> to <b>URL</b>. You'll then need to encode each parameter name and it's value into the last two elements of the f?p format. You can use a two or three parameter URL as an example and just modify from there. <br>
    <br>
    For example (from one of my applications):<br>
    <br>
    f?p=101:13:::NO::P13_NAME,P13_SEQ_ID:Lee%2C396<br>
    <br>
    The relevant part is the last colon (or the fields on either side of it more specifically). The first set of fields <b>P13_NAME,P13_SEQ_ID</b> are my page item names on the destination page (where we're going) and the last two <b>Lee%2C396</b> are their values from the source page (where we're coming from). The %2C is an encoded comma. In order to get this in your output, you want to set your URL to something like:<br>
    <br>
    f?p=101:13:::NO::P13_ITEM1,P13_ITEM2:&P12_ITEM1.,&P12_ITEM2.<br>
    <br>
    I'm doing this from memory since I can't find a good example for you, but I think I'm pretty close in the syntax.<br>
    <br>
    Hope it helps.<br>
    <br>

  • Drill Down in Charts

    Hi All,
    My requirement is to achieve drill down in Stacked Bar Chart. On the click of an item in Stacked Bar Chart i want to drill down and display another Chart based on the selected context.
    Need suggestions or sample code to achieve this.
    Help is highly appreciated.
    Regards,
    Sharique

    Here is what i did.
    1. I created a table + chart report.
    2. Duplicated it and made the country column is prompted in second report.
    3. In first report im having country in x-axis and sales in y-axis. and i went to the 'additional charting options' > 'interaction' > 'navigate' and selected the second report.
    4. now i clicked first country. it drilled to the second report and showed the first country alone.
    is this what u also did? missed any step?

Maybe you are looking for

  • How can i transfer my music from windows 7 to a mini mac

    I need some help as I bought a mini mac for more storage for my music on windows 7 and greater ease of use for managing my music library. I also have an external hard drive full of music 750GB I was hoping to transfer. I am now considering an externa

  • Itunes wont list all songs on ipod, only some of them

    My itunes doesn't list all the songs on my ipod, only some of them. (Only the ones uploaded after a certain date, when I think I forgot to eject my ipod one day). The ipod definitely has all the albums I've ever uploaded on it. I know because I've tr

  • Licensing cost: For SAP R/3 4.7 to ECC 6.0 Upgrade

    Hello, I am planning to upgrade my SAP R/3 4.7 System to ECC 6.0. I would like to know whether any additional Licensing cost is involved for this SAP software upgrade. Also, I have three system landscape. Can you give me some pointers to SAP Upgrade

  • MS Explorer breakdown

    I have an applet in my jsp page which works fine. When I leave the applet and navigate to another page, the MS Explorer will crash in that way that Billy wants to have my message on his desktop (will say: windows asks me to send a report and Explorer

  • Aperture 2 install - serial number problem

    Disclaimer: I'm pretty good on a pc. Absolutely terrible on Mac, never had so many problems with tech :/ So...I have my serial number from the back of the Aperture 2 "Installing your software" booklet. Checked that I'm entering "I's" not "1's." Got d