Drilldown on line chart w/3 series to 3 different pie charts w/ DV

Hello experts,
    My situation is the following. I have a Line chart representing sales on 3 different series(actual, budget and last year) along the 12 months. Then 3 different pie chart that link the office sales of each serie and each month. I successfully linked the drill down data, but I can't make it workout the dynamic visibility everytime you select a different serie on the line chart, because of the common issue of the insertion that doesn't clear the previous selection when you make another one. I'll attach the xlf file as a txt. Hope you can make it work.
Thanks a lot
Gaston Bigi

Hi Gaston,
Take the reference of these blog posts.
Filtering Through Combo Box
Source Data Component Usage
Drill down Made Easy
If there is still an issue achieving it, let us know.
Most probably the second link here should solve the issue.
Regards,
Sara

Similar Messages

  • Please suggest how can we place chart series label evenly in Pie Chart of SSRS 2008

    Could you please suggest how can we place chart series label value evenly so that it doesnot overlap with each other and user can view the data properly.
    Please find  the attached  screenshot for the same.

    Hi SubhadipRoy,
    As Satish posted, the solution can achieve your goal. In addition, you can right click the Chart Series Labels and Series Label Properties, and then select Number in the left pane, finally select Scientific below the Category option. The data label may not
    overlay. Or you can enlarge the chart.
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Rugged lines in Pie chart

    Hi,
    When i create pie chart in MS Excel and copy it to illustrator and remove unwanted elements and again export it to QuarkXpress/InDesign in .EPS format, in transparent mode. I get a rugged cirle lines.
    When everything is done and the PDF of the file is created, when i close obsever the pie chart in through the Adobe Reader, the pie chart shows rugged circle instead of smooth circle. Is it fine or ?

    Hi Mike,
    Thanks for the input. But my report is to show top 3 salaries from all job types.
    below is my query:
    select null link, job,sal from (
    select job,sal from (
    select job,sal,
    row_number() over(partition by job order by sal desc) rn
    from emp)
    where rn<2
    order by sal desc)
    where rownum<=3;
    In this case how can i multiply the total sal with sal?
    Regards
    Mohan

  • Creating Pie Chart?

    Hi All,
    2 problems:
    I am attempting to create a Pie Chart in VC but it does not work, I have built other graphs with success.
    The data I am using is simple, I have one Data column Actual Amount and another Target Amount, I simply want to put both of them into a Pie chart and show how much Target is still left to achieve compared to Actual.
    When i attempt this all i get is one full amount?
    Another problem is i want the value displayed on my line chart rather than just when i hover my mouse over the Line Chart?
    Any advice appreciated,
    Thanks

    John,
    VC does not support displaying the data series on charts (other than hovering over it).
    As for the other problem of displaying two data series on the same pie chart, try charting them on separate pie charts instead? what is ur query drilled by? to see the actual vs target amts, i would think it would be easier to view if you plotted them as bar/column charts (just a suggestion)
    prachi

  • Linking Pie Chart & Table to Bubble Chart Values

    Hi All,
    I am new to Xcelsius and I have an issue with my drilldown.
    I have a Combo Box and choose Plants from this and my Bubble Chart updates according to the value in combo box.
    Now I want to hover over the 'bubble' and want a Pie Chart and Table to reflect the values from that bubble. The value in the Bubble is a total and I want the Pie Chart and Table to be splits of this total - eg. Total of 50 employees but want the Pie Chart and Table to reflect splits per team.
    I know the Destination Values from the Bubble Chart should be in the Pie Chart and the Drilldown should be enabled. However, the values that I want to show in the Pie Chart are different eg. Bubble Chart will say 50 but in the Pie Chart I want to see 5 segments of 10  - 50. ie. the Total of 50 split into the appropriate 5 teams. How do I create this linkage/drilldown where it takes the 50 and when I hover over this bubble, the Pie Chart shows the team split by looking up a different set of data. Have tried adding this into the drilldown area in the Pie Chart, where the source data is the split and the destination data is another area to pick up this data.
    Any advice would be much appreciated.
    Thanks,
    Scott

    Hi Maddy,
    Thanks for the reply.
    My scenario is :
    In the Combo Box, you choose an Industry.
    From each industry there are 4 values.
    Industry      Employees     Int FTE     Ext FTE     Total FTE
    Education     5000          5     8     13
    Retail          40000          15     18     33 etc.
    When I choose Education from the Combo Box, in the Bubble Chart I want to see a bubble for Education at the point of 5000 (X-axis) and 13 (Y-axis). This works fine.
    I now want to hover over the Education u2018bubbleu2019 and the Pie Chart will show a split between Int FTE & Ext FTE u2013 ie. 5 & 8. I have added the relevant details to the drilldown and I still can't get this to work.
    Also by hovering over the bubble, I want a table to change too, that shows a breakdown of what teams the Int FTE & Ext FTE is made up from and how many employees are in each team. This data is picked up from a different destination and I not sure how we link this to the data above.
    Hope this helps.
    Scott

  • Business Graphics:Create multiple Pie charts dynamically

    Hi Experts,
    I have a requirement to create 10 different pie chart in a view in a Grid layout.
    The charts will be created dynamically because the data will be known at runtime.
    Any type of help will be appreciated
    Regards.

    Hi,
    Here is a simple example:
    you must write this code in wdDoModfy() method, in if (firstTime){}
    in the layout there is already created one transperent container with id BG_CONTAINER
    //add a node
    IWDNodeInfo loDynNode = wdContext.getNodeInfo().addChild("DynNode", null, true, false, true, false, false, true, null, null, null);
    //add some attributes to it
              loDynNode.addAttribute("DynAttr1Str", "ddic:com.sap.dictionary.string");
              loDynNode.addAttribute("DynAttr2Int", "ddic:com.sap.dictionary.integer");
    //get the node
              IWDNode node = wdContext.getChildNode("DynNode", 0);
    //fill the node with some values
              for (int i = 0; i < 10; i ++){
                   IWDNodeElement element = node.createElement();
                   element.setAttributeValue("DynAttr1Str", "Str value " + i);
                   element.setAttributeValue("DynAttr2Int", new Integer(i));
                   // Add to the content
                   node.addElement(element);
    //get the attributes, we will use the attrinfo to bind them to the series
              IWDAttributeInfo loDynAttr1StrInfo = loDynNode.getAttribute("DynAttr1Str");
              IWDAttributeInfo loDynAttr2IntInfo = loDynNode.getAttribute("DynAttr2Int");
    //create the graphics
              IWDBusinessGraphics loGraphics = (IWDBusinessGraphics)view.createElement(IWDBusinessGraphics.class,"bg1");
    //set the type to pie
              loGraphics.setChartType(WDBusinessGraphicsType.PIE);
    //create a simple series and bind the integer attribute to it
              IWDSimpleSeries loSSeries = (IWDSimpleSeries)view.createElement(IWDSimpleSeries.class, "Series1");
              loSSeries.bindValue(loDynAttr2IntInfo);
    //create the  category and bind the string attribute to it
              IWDCategory loCategory = (IWDCategory)view.createElement(IWDCategory.class,"Category1");
              loCategory.bindDescription(loDynAttr1StrInfo);
    //add series and category
              loGraphics.addSeries(loSSeries);
              loGraphics.setCategory(loCategory);
    //I assume that there is a transperent container already created design time to put the graphics there
    //container with id BG_CONTAINER
              IWDTransparentContainer loContainer =  (IWDTransparentContainer)view.getElement("BG_CONTAINER");
    //add the graphics
              loContainer.addChild(loGraphics);
    If this is the type of graphics you need then you must simply do a for cycle and supply the graphics with the right node elements and you are ready.
    Best regards,
    Anton

  • Remove dropshadow filter from pie chart?

    Hey all,
    I would like to remove the default dropshadow filter from the default mx pie chart. I tried to set the pie chart's filters property to an empty array.  I also tried to set the 'series filters' prop to an empty array, but have no luck?? I tried searching through the documentation, but didn't find much info on this. Anyone know how to do this? Here's what i've tried.
    with AS,
    myPieChart.filters = new Array();
    myPieChart.seriesFilters = new Array();
    and, inline
    1)  <mx:PieChart filters="[]" ...>
    2) <mx:seriesFilters><fx:Array /></mx:seriesFilters>
    BTW, using Flash Builder 4

    Have you tried setting filters = null?
    -- Tom

  • To collect small slices into a secondary, callout pie chart in SSRS 2005

    Hi Guys, 
    There exists a property in pie chart in SSRS-2008 which can consolidate the small slices on pie chart. But I am unable to find the same property in SSRS-2005. 
    Is this property only available in SSRS-2008 ? If yes how can we achieve the same functionality in SSRS-2005 Pie Chart ?
    Regards
    Consolidating Small Slices on a Pie Chart
    Consolidating Small Slices on a Pie Chart
    Consolidating Small Slices on a Pie Chart
    Consolidating Small Slices on a Pie Chart
    Consolidating Small Slices on a Pie Chart

    Hello,
    Based on my research, the CollectedStyle property that collect small slices into one signal slice or a secondary, callout pie chart is available from Reporting Services 2008. So it is not supported in Reporting Services 2005.
    For example, you are using the query below to return the SECTION and DIVISION fields as the chart fields: SELECT SECTION , DIVISION FROM TEMP, and you want to collect small slice COUNT(DIVISION) smaller than 5 as the callout pie chart. To work around this
    issue, we can create two charts on the surface, one as the big and collected slices chart, another one as the secondary, callout pie chart. For more details, please refer to the following steps:
    We can use the query with some conditions like below to return the fields for the main chart:
    SELECT CASE
       WHEN COUNT(DIVISION) <= 5 THEN 'Other'
       WHEN COUNT(DIVISION) >5 THEN SECTION
       END  AS SECTION, COUNT(DIVISION) AS DIVISION
     FROM TEMP
    GROUP BY SECTION, DIVISION
    We can use the query like below to return the fields for the callout pie chart:
    SELECT CASE
          WHEN COUNT(DIVISION) <= 5 THEN SECTION
       END  AS SECTION, CASE
          WHEN COUNT(DIVISION) <=5 THEN COUNT( DIVISION)
       END  AS DIVISION
     FROM TEMP
    GROUP BY SECTION, DIVISION
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • PIE Chart Color Highlight - setting colors

    Hi
    PIE Chart showing default colors even after setting the diffent colors to OIE chart slices from Color Highlight tab.
    PIE chart is showing only one slice when I select Data for the PIE Char is "For all records".
    Could you please let me know how to set the different colors for slices?
    Thank you

    hi,
    As you are selecting 'Color Highlight' for different Pie Slices,  "For all records" option shouldn't be selected.
    It should be "On Change of".
    Then obviously you will see the colors specified in 'Color Hghlight' tab.
    Regards,
    Vamsee

  • How to show top 20 values in a Pie Chart

    Hi
    We have a requirement to develop a Pie chart for top 20 Order value locations.but i am not able to plug in top 20 logic in a pie chart.This functionality (TOP N) is avilable in bar chart , but it is not avilable in Pie chart. Could some help me to implement this logic in a Pie chart.
    Your help in this regard is highly appreciated.
    Thanks
    Laj

    Not sure what you are saying here.  Obviously you have to have a place to place the distinct values, whether in another column or in the same column. That's not really a drawback, just a fact of life.
    I'm curious about what you mean by "multiple columns to dynamically select some records with specific criteria from different columns."  If you can give a specific example of what you are trying to do, I there may be a solution.  Are you trying to do something like Excel's filtering on multiple columns?
    If you are you can click the disclosure triangle by the column letter to get a dropdown like this:
    Similar to Excel.
    SG

  • Pie chart in Visual composer

    hi experts,
    Can anyone tell abt the creatiob pie chart in visual composer??? for multiple values..
    regards
    roshini

    Before you rush now and create a pie chart, sit back and read the following document of how to visualize data:
    https://wiki.sdn.sap.com/wiki/display/SIT/Visualization
    You will see that pie charts are the by far worst method to display data. Edward Tufte (the guru in data visualization and a must read for everybody who wants to be serious with datawarehousing and dashboards) writes "A table is nearly always better than a dumb pie chart; the only worse design than a pie chart is several of them [...]" (p. 178, The Visual Display of Quantitative Information)
    If you want to become the "laughing stock" of your folks and customers, and just show off marketing wise, then use as many pie charts as you can find. Your users however won't be able to make sense out of the data.
    Sorry, I am very passionate about this topic

  • Pie chart not getting

    Hai
    Im not getting the pie chart .what i did was
    i created a query in Bex. And then i publish the query from Bex-Analyzser (Business Explorer -> Tools -> Launch in WebBrowser).
    Then i got my report in Web . Then i went to "Graphical display" and i select the 'pie chart' . But im not geting the pie chart.
    why it is like that
    kumar

    Hi, Kumar.
    What are you getting? Some message?
    Other graphic types works ok?
    Regards,
    Henrique Teodoro

  • Add Custom Color to pie-chart

    I have requirement to add specific color to each element in pie-chart.
    Below is my code for pie-chart with static json.
    Instead of the default colors given by the viz charts, I want to have red, green, orange and blue color in the pie-chart.
    Has someone changed the colors successfully?
    var oModel = new sap.ui.model.json.JSONModel({
         businessData : [
                   {Country :"Canada",revenue:2410.87, color: "red"},
                    {Country :"China",revenue:638.29, color: "green"},
                    {Country :"France",revenue:487.66, color: "orange"},
                    {Country :"Germany",revenue:170.23, color: "blue"}
    var oDataset = new sap.viz.ui5.data.FlattenedDataset({
             dimensions : [ {axis : 1, name : 'Country',  value : "{Country}" } ],
             measures : [ { name : 'Revenue',  value : '{revenue}' } ],
             data : { path : "/businessData" }
    var oBarChart = new sap.viz.ui5.Pie({
              width : "80%", height : "400px",
              plotArea : {
                       'colorPalette' : d3.scale.category20().range()
               title : { visible : true, text : 'Revenue By Country' },
               dataset : oDataset
    oBarChart.setModel(oModel);
    oBarChart.placeAt("sample1");
    Thanks,
    Shashi

    After lot of permutation and combination, I figured it out how to change the color.
    Changing colorPalette to 'colorPalette' : ['#00B050','#CCFF66','#FF0000','#FFC300'], it worked
    var oBarChart = new sap.viz.ui5.Pie({
              width : "80%", height : "400px",
              plotArea : {
                       'colorPalette' : ['#00B050','#CCFF66','#FF0000','#FFC300']
               title : { visible : true, text : 'Revenue By Country' },
               dataset : oDataset

  • Pie Charts show Table Sum?  Huh?

    Hello all.
    I am making a simple home budget, with a table of data, which has a final row that totals the previous entries. I selected a pie chart to show this info, but the pie chart includes the total row data, which makes no sense. How do I tell Numbers to not show that total entry in the chart?
    Example:
    Row 1 = $500
    Row 2 = $400
    Row 3 = $300
    Row 4 = Calculates sum which in this case is $1200.
    Numbers draws a pie chart showing 4 items, not 3 items and their corresponding percentages of the entire chart.

    Try placing a summary footer then plot the individual data items.
    Regards,

  • How to enable the shadow option in my 3D pie chart?

    I am using Numbers 09 and have created a pie chart.  I see that the 3D pie chart has a dark black shadow on it and I want to be able to change that color of the shadow. When I click on the both the full chart or just a slice of the pie chart the "Shadow" bar is greyed out on both the Graphic inspector AND the Chart inspector window.  Can I do this? If so, how?
    Thank you for you help in advance..
    News guy..

    I do not believe this is possible in Numbers 2.x (the previous version of Numbers)
    One work around is to place a circle with a shadow behind the pie chart:
    Will look like this:

Maybe you are looking for

  • How do I crop a Preview document using Mountain Lion

    How do I crop a Preview document using Mountain Lion

  • Problem in the import of WSDL to PI

    When trying to import a specific WSDL to PI 7.1 show me the following error: Unable to convert imported document to WSDL Reason: Element "simpleType" is not permitted in the "/schema/simpleType("__MANDT")/restriction" elementCheck the selected catego

  • ICC Profile on Mac

    Hello there, after reading through the ICC threads, I found some similar symptoms to my problem, but not the whole story... I'd like to print from Lightroom (Mac/German version) using my printer's ICC profile as using the printer settings and default

  • IPhoto 2 slow to open

    Hello everyone iPhoto 2 takes around 7 minutes to open on my trusty 400MHz Powerbook 15" titanium running 10.3.9. Hasn't always done so, but happens without fail now. I click the icon in the dock then get a spinning disc for about 7 minutes until the

  • Can't connect to ASDM 6.5.4 with Windows 8 Pro

    I am trying to install a new ASA 5505 and I can not connectto ASDM version 6.5.4 with Windows 8 Pro. The ASA ia giving me a correct ip and http server is enabled with the correct address allowed. I can ping the asa from the 8 Pro Laptop. I can connec