Pie chart multiple levels

Hello,
I'm looking for software to create pie charts with multiple levels. I tried Numbers but it didn't work out. Does anyone has tips for Numbers or other software that I can use? Thanks in advance.
Greetings,

I also don't have many experiences in this kind of thing. However, I recently happened to read something about WinForms chart UI control which include the pie chart creating function. Not sure that kind of thing would be helpful or not.

Similar Messages

  • Change colors in multiple pie chart - with legend

    I need to change the colors of groups shown in multiple pie chart diagram in CR XI.
    I managed to actually change the colors in the diagram by using highlighting rules in the wizard. (Sorry, I need to guess the correct English terms since I am using the German version.)
    But the colors in the legend are not affected by the rules, so the legend displays colors which are not shown in the diagrams at all. How can I fix this?
    Thanks in Advance
       Andreas

    Hi Andreas
    I have the same problem.
    I found this BO note:
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3131383434373026
    I says that this behaviour is by design and cannot change
    Not what you would expect really! 
    If the series colour can be changed then why does the series marker colour not match the series it represents?
    Patrick

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

  • Create Multiple Pie Charts with Drill Down capability(foreach in mainreport

    Hello All,
    i need to create a report with 4 pie charts, which should have drilldown capability. i tried to do that, and i can do only for two charts. i need for the rest 2 also.
    Please help.
    Thanks

    See this thread:
    BO Design studio Chart Component issue ...!! | SCN
    If Chart is bound to DS_1 and On Select event of chart is as below:
    DS_2.setFilter(dimension, CHART_1.getSelectedMember(dimension));"
    This works when you click a value on one chart it will select another.
    I haven't tried it with hierarchies.

  • 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

  • Custom built field to be used as lable in pie chart having multiple values

    Hi All,
    I have a requirement and if someone can throw some light, then I could try the same as I am stuck now.
    I have a list of Cities and I have to show the Top 5 Cities and remaining all should be "All Others". I have used Rank and was able to Show Top 5 and combine rest everything into "All Others" through a logic.
    e.g:
    City                            Sales Rev
    Belarus                          1000
    Delhi                               2000
    Melbourne                      2500
    Sydney                          2000
    Singapore                      1500
    All Others                       4500
    Now I have to show this new dimension combined like below and use New_City as Dim and Sales Rev as Measure in a Pie Chart. The Pie chart will be shown on Sales Rev as measure and the New_City which is a combination of a lot of other fields will show them as labels
    New_City                                                        Sales Rev
    Belaruschar(10)[Qty Sold]                          1000
    Delhichar(10)[Qty Sold]                               2000
    Melbournechar(10)[Qty Sold]                      2500
    Sydneychar(10)[Qty Sold]                          2000
    Singaporechar(10)[Qty Sold]                      1500
    All Otherschar(10)[Qty Sold]                       4500
    This is my requirement and I am stuck at combining City like Belaruschar(10)[Qty Sold] to form New_City because as and when I do this and remove City column from the table it starts throwing multivalue error or in some other style gives me a summation of the entire Sales Rev in each row.
    If I can achieve the same in some other approach also, I would highly appreciate the same if someone can share their ideas.
    Regards

    Greetings,
    Normally you can create a variable with a formula depending on the city's that you want to have.
    For example using efashion, the following formula would give you two lines:
    =If([City]="Miami";[City]Char(10)"1000";"Others")
    Result would be something like
    Miami
    1000                           1500
    Others                         20000
    Please note this is only an example and then you can apply your ranking. However bear in mind due to aggregation the Others will be the sum of all the other City which are not included in your condition.
    Regards,
    Rico.

  • Pie Chart Labels - 5's turn into 6's at 100% zoom on screen but print OK

    I have a really odd problem; an application I developed that is changing the numerals on the labels of a pie chart.
    All 5's change to 6's.  This problem is occuring on multiple end user workstations.  It only displays incorrectly at 100% zoom level on the screen.  If they change the zoom level, or print the report, the numbers appear correct.
    I've put a screenshot in a photobucket in case anyone wants to see.  One is a .png and one is a (larger) .bmp.
    http://s1214.photobucket.com/albums/cc493/fohlinedata/
    Adding to the problem is that I'm unable to reproduce the issue, either on my dev. machine or on a test machine.
    The application was developed with VS 2005, and the setup program was created using the 2005 SP1 msm.
    I've tried searching to no avail, and I'm hoping someone has an idea on this one!

    Hello,
    That is very strange. I think it has to do with either Microsoft's USP10 or GDIPlus dll's.
    Try changing screen resolution or screen size and possibly the DPI settings to see if it corrects the problem.
    They may wan to update their Video card drivers also.
    What version of CR are you using? It may be resolved in some service or fix pack. The charting dll is from a third party so you may want to use [Modules |https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip]to verify they are all using the same runtime files also.
    Thank you
    Don

  • No data in Active sessions pie-chart and availability is 0%

    Hi All,
    Does anyone know why my Enterprise Manager cosole in Oracle 10g installed on windows xp professional is not showing any data? Availabilty is always 0% for the instance ORCL and the active sessions pie-chart is always showing 0.01 since May 17,2005.
    Can anyone tell me how to configure EM so that instance ORCL and the active sessions start showing data again?
    Thanks

    Hi,
    Kindly activate the data request. Post that, Under "request available for reporting" a symbol will appear which means that the data has been moved to Active table and is available for reporting at further levels.
    And you can then check for contents in the active table of the DSo, you should get the records.
    Change log: Contains the change history for the delta update from the DataStore object into other data targets, such as DataStore objects or InfoCubes. It makes sense in case of delta uploads.
    Regards,
    hemlata

  • Histogram works, Pie Chart doesn't :(

    I have a simple form, which has 1 block, a block level "when-new-block-instance" trigger and 2 bean_area under the block (beans don't have any trigger code). This simple form is called from within another form when a button is pressed. The histogram (bar chart) works, but the simple pie chart doesn't work (only displays a single circle - not the slices on the pie). The related trigger code is below. Can anybody see what is wrong with the pie chart code ?
    Appreciated.
    =====================================================================
    -- Set the bean area properties
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'CLEAR_BLOCK','');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'GRAPHTYPE','VERTICAL_BAR');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'ENABLE_TOOLTIPS','VALUES');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_DELIMITER','#');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_TITLE','Order Count By WHIP#red#b#14');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_FOOTER','WHIP Name#blue#12');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_DELIMITER',',');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_Y_LABEL','Move Your Mouse To View The Value For Each Bar');
    -- Use the following for a nice 3D look (if users want)
    -- SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'SET_DEPTH','20,45');
    -- This should populate and display the data on the graph by using the related PJC
    DECLARE
    ordercount NUMBER(10);
    whipname VARCHAR2(25);
    vData VARCHAR2(200);
    vDelimiter VARCHAR2(1);
    cursor c1 is select distinct interface_name from pps_order order by interface_name;
    BEGIN
    vDelimiter := ',';
    open c1;
    fetch c1 into whipname;
    while (c1%found) loop
    select count(*) into ordercount from pps_order where interface_name=whipname;
    vData := 'Total Order Count Per WHIP'||vDelimiter||whipname||vDelimiter||ordercount;
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'ADD_ROWDATA',vData);
    fetch c1 into whipname;
    end loop;
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA1',1,'ADD_DATA_TO_GRAPH','');
    close c1;
    END;
    -- THIS SECTION IS FOR THE PIE CHART
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'CLEAR_BLOCK','');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'GRAPHTYPE','PIE_GRAPH');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SHOW_PIE_LABELS','VALUE');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SET_DELIMITER','#');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SET_TITLE','Order Count By WHIP#red#b#14');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SET_FOOTER','WHIP Name#blue#12');
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'SET_DELIMITER',',');
    -- This should populate and display the data on the graph by using the related PJC
    DECLARE
    ordercount NUMBER(10);
    whipname VARCHAR2(25);
    vData VARCHAR2(200);
    vDelimiter VARCHAR2(1);
    cursor c2 is select distinct interface_name from pps_order order by interface_name;
    BEGIN
    vDelimiter := ',';
    open c2;
    fetch c2 into whipname;
    while (c2%found) loop
    select count(*) into ordercount from pps_order where interface_name=whipname;
    vData := 'Total Order Count Per WHIP'||vDelimiter||whipname||vDelimiter||ordercount;
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'ADD_ROWDATA',vData);
    fetch c2 into whipname;
    end loop;
    SET_CUSTOM_PROPERTY('BLOCK1.BEAN_AREA2',1,'ADD_DATA_TO_GRAPH','');
    close c2;
    END;
    GO_ITEM('BLOCK1.CLOSE');
    This uses the FormsGraph.jar file implementation as you can see. I know Frank Nimphius is the only expert when it comes to FormsGraph.jar at Oracle, but currently he is on vacation - so no official support to an unofficial (unsupported) charting implementation - but I thought there might be others who have done this before.
    Can someone who implemented a pie chart share his/her code here - a simple pie chart, nothing fancy (like the one that comes with the graph90.fmb file, which I followed but did not figure out why my implementation is not working). Something with the vData string or number of vData strings requirement? no explanation in the FormsGraph.jar doc and I am not a java programmer to figure it out from the java source code. I am looking for a simple trigger code for the pie chart - not like "look at the forms90.fmb that comes with the demo package" kinda answer.
    Thanx
    Message was edited by:
    zaferaktan
    Message was edited by:
    zaferaktan

    Any idea ?

  • Problem with Pie Chart

    Hi Experts!!
    I've a little problem with a Pie Chart, I want to present a Pie Chart with 3 values which are defined on the Data Series, when I deploy I get the message: "Expected exactly 1 data series in XXXXX chart. Extra data series ignored". I don't understand why, because if I try to do a Column Chart with the same information, it works Ok!
    Can anybody help me please?.
    Emilio.

    Multiple data series with Pie Chart is not possible. you must have one series if u r using pie chart

  • Pie Chart Callouts Remain After Updating DataProvider

    I have a Pie Chart with an Array Collection as the
    dataProvider. When I update the dataProvider, however, the Pie
    Chart callouts are not always displayed correctly. I basically have
    a form where a user can enter percentages of catregories, and the
    percentages are displayed in a pie chart right next to the form.
    When I update a value from zero to some positive number, the
    category is displayed in the pie chart correctly. But, when I
    update that value back to zero, the callout labels get funkified.
    For instance, sometimes one label is displayed twice, or if there
    is only one category filling the pie chart (100%), the previous
    callout labels are still displayed. I debugged and found that the
    underlying ArrayCollection values are correct, but it seems the
    series is not reflecting the values in the Collection. Any ideas
    how I can fix this?
    Thanks.

    Sure! Here you go. Simply edit any of the "value" values to
    be zero, and you will see what I'm talking about. Do it multiple
    times and it gets worse and worse. I'm using SDK 3.2.
    I'm starting to think this is a bug.

  • Pie chart

    In Obiee 11g Pie chart based on hierarchy , once click on the pie chart it is going to next level , but if there is no result for the next level it has to be constant(no drill need's to happens) instead of that it displays like "Maching results not found " ,
    but i need no drill at that level and dont required the messege like "Maching results not found ".
    how to over come this.
    Thanks

    This is OBIEE OOTB functionality. No matter if the data is thr or not...The drill functionality will work till the level where there is no data or till the last level...whichever condition is satisfied first.
    Hope this is useful...

  • 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 in pivot view  showing only the first column's results" in obiee

    Hi,
    In my pivot view(pie chart view+pivottable),i'm getting only the first column's result in pie chart..
    I have added a column named *'A*' in rows and '*moneyspent*' in measuresfield and the '*period*' in the columnsfield in the pivot view.I'm calculating the sum of
    the rows and columns..
    I'm not getting the sum valueof moneyspent in the pie chart..instead i'm getting only the first column of period in the pivot table in the pie chart.
    can anyone tell how can i get the sum value of pivot table in pie chart?
    Thanks in advance..

    Hi Prash,
    let me try to give you an example based on the paint sample:
    Use Markets.Region, Products.Brand, 'Sales Measures'.Units
    choose a pivot view to display the result: region goes into the rows-section, Brand goes into the columns-section and Units into the measures-section
    In the columns-section add a total using the 'add total' at 'Measure Labels' level
    the result is a total column on the right side of the pivot.
    looking like this:
    Units
    Brands
    Region Enterprise Magicolor Mccloskey Valspar Units Total
    Central 1032.....
    Eastern 1485......
    Southern 824.....
    Western 580
    What I am looking for is a new column 'Units Total pct'.
    If I duplicate the measure to show the values in percent, I'll get a second column per Brand (showing the absolute and percentage values) - that's what I don't want
    Regards
    Andy

Maybe you are looking for

  • Send Dunning Letter to Customer thorugh Email ID

    Hi anybody,    Please explain to me how to send dunning letters into customer using Customers Mail IDs . My users asked to me once do Dunning letter F150  all customers dunning letter send corresponding customer mail address. How do I setup in SAP se

  • Error: ORA-06502: PL/SQL: numeric or value error:NULL index table key value

    Hi, I am trying toceate an interface which collects data from database make some transformation and populated seeded tables in the same database. My Approach is : a) Create a record type variable ( concists of multiple segments) b) Create a pl/sql ta

  • Color management detective needed!

    I need help with some color management issues I'm having. I've noticed that RAW images imported into Aperture (both 1.0.1 and 1.1) look very different than those imported into PS2 via ACR. I've been told that this is simply a result of the different

  • Type: SQL Query (updateable report)

    Hello, Is it possible to default a field value in a SQL Query (updateable report) Report Region in a DML Form when the 'Add Row' button is clicked? I want to default some List of Value fields. This is not as simple as a HTML Region Item based on a ta

  • Deploying report in web layout.

    Hi Friends, I have developed a report throuhg report builder 9i for both web and paper layout. When I am running this paper layout mode the output format is appearing perfectly but in case of web layout not is appearing properly as well as item with