Pie Chart: Same slice?

Hi,
I have make a chart pie with 3 prices (grades): 20, 20 ,22
The 1/3 of the pie has the price of 20, the other 1/3 of the pie has the price of 20 and the remaining 1/3 has the price of 22. (three different colours)
How can I make my pie to have 2/3 with the price of 20 and 1/3 with the price of 22? (Two different colours)
Thanks

The pie chart will reflect whatever values are in the data that it is based on. What exactly are you measuring, and what sort of data are you using?

Similar Messages

  • Pie Chart -- Separate Slices

    Hello, I have created a Pie Chart. I was wondering if anyone knows of a way to separate the slices. I believe Oracle may have a feature to explode (separate) one slice of the pie chart away from the other slices. However, I was wondering if there is a way to separate each slice from each other.

    Hello,
    To "explode" a pie, just add the following lines in the "Graph Settings" :
    <SeriesItems>
    <Series id="0" pieSliceExplode="100"/>
    <Series id="1" pieSliceExplode="100"/>
    <Series id="2" pieSliceExplode="100"/>
    <Series id="3" pieSliceExplode="100"/>
    <Series id="4" pieSliceExplode="100"/>
    <Series id="5" pieSliceExplode="100"/>
    <Series id="6" pieSliceExplode="100"/>
    <Series id="7" pieSliceExplode="100"/>
    <Series id="8" pieSliceExplode="100"/>
    <Series id="9" pieSliceExplode="100"/>
    <Series id="10" pieSliceExplode="100"/>
    </SeriesItems>
    Regards

  • Proportional pie charts and annotation

    Hi,
    I have Numbers to help me make colourful, etc. graphs for inclusion in my MSc dissertation. I am using pie charts to show annual comparisons between common forms of disposing of waste. Ideally, I'd like the pie chart to show the amount of hazardous waste produced per annum, i.e. the larger the amount produced, the larger the pie chart. Other than doing it manually, by eye, can Numbers do this?
    Finally, when some of the fractions are small, instead of showing, say <1%, it will say 0%. Can I alter the labelling of the pie chart's slices?
    Many thanks - and I hope that this makes sense!
    Simon

    Axtron,
    Not seeing your available data, the only thing to go by is the image that comes to mind. Pie charts are excellent for depicting parts of the whole, so your concept of showing all the various waste materials produced in a year broken into percents works well. The pie charts will do the percents for you. Perhaps grouping a few waste types with small amounts and labeling them "All Others" would work.
    To show comparisons of successive years would require a pie chart for each year. One would scan across the row of charts and see certain types of waste were increasing or decreasing percent-wise over a period of time. But remember, each chart has to be the same size so as not to distort the data.
    If you are interested in showing increases and decreases in quantities of the various waste types over a period of time, perhaps a line or bar chart would be more effective. As a matter of fact, you could use either of these to show the percents of the pie chart as well. Once you have a table of data you can experiment with each type of chart to see which best emphasizes your point.
    pw

  • How do I link to a table from a slice of a pie chart?

    My project manager is after me to add a feature to a pie chart built on one of my tables. The code that selects from the table for the pie chart is this:
    select 'http://apexdevapp1.ci.raleigh.nc.us:7777',activity_type,count(ID) total FROM eba_ver2_cust_activity
    where ACTIVITY_DATE BETWEEN NVL(TRIM(:P23_START_DATE), '01-JAN-2001') AND NVL(TRIM(:P23_END_DATE),
    '31-DEC-2099')
    group by activity_type,'http://apexdevapp1.ci.raleigh.nc.us:7777';
    She wants to be able to click on a slice of the pie ("activity_type") and link to another page showing a report limited to that activity_type, selected from the same table. I know how to link from one interactive report to another, but I don't know how to do it from a slice of a pie chart. Does anybody know how?
    I'd appreciate some guidance on this.
    Steve the n00b in Raleigh NC

    Denes Kubicek wrote:
    Have you compared that link with any of your apex application links in the browser? ;) :)
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------I may be missing the point of your question, Denes, but all my links are implemented from the Link Column section under Report Attributes. They are not mentioned anywhere in the Select statement, unlike yours.
    Steve "the n00b" in Raleigh NC

  • 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 from Largest slice of another pie chart.

    Greetings!
    I'm trying to come up with a method which will allow me to create a pie chart of the subgroups from the largest slice of an existing pie chart. The "parent" pie chart will change depending upon the parameters given in the report.
    declare @dataTable table (category varchar(10), task varchar(10), timeSeconds int)
    insert into @dataTable (category, task, timeSeconds)
    values
    ('Alpha','Scrub',100),
    ('Alpha','Sweep',100),
    ('Alpha','Polish',100),
    ('Bravo','Wash',200),
    ('Bravo','Dry',200),
    ('Bravo','Fold',200),
    ('Charlie','Paint',300),
    ('Charlie','Sand',300),
    ('Charlie','Spackle',300)
    In this example, when a pie chart is produced, Charlie would have the largest slice. I then want to produce a pie chart showing only the tasks contained within the Charlie category, but which has the flexibility to render if the Alpha or Bravo groups are
    the largest slice next time.
    Thanks

    For anyone else attempting the same thing: I wound up bringing in a reference to the largest slice using a subquery in the initial query, and using that column as a filter on the second pie chart.
    I was hoping for a solution from within SSRS itself, but settled on that. I'll leave the question open in the hope someone knows how to achieve the same result from within SSRS.

  • Pie chart with resizable slice ?

    Hello All,
    Is it possible to create a pie chart with re-sizable slice.. ie user should be able to decrease  and increase  the area of any slice by just using mouse drag. If I increase area of any particular slice, other adjacent slice should automatically get reduced.  Please provide me some pointers on this .
    Regards,
    Dharmendra

    Hi Deepak,
    I had time dimension in the RPD.
    I have stacked bar chart with same time dim like year & month in the report. when I go to legand and set navigation it is working fine. But not with pie chart.
    I am not not sure what is the problem. When I click on Pie chart it is not navigating to the target report. Can it be any other issues..???

  • Pie chart doesn't show the label of the last slice

    Post Author: saschaherrle
    CA Forum: Charts and Graphs
    Hi there...
    I have this problem with displaying the label of the last pie slice of my report. It is working perfectly fine in my testing environment, but it just doesn't want to show in the client environmet... I don't know what to try anymore. I've tried all the other label location options, but they also dont help. There are five slices on the pie chart with the following values:
    1.9%
    43.6%
    51.1%
    2.3%
    1.1%
    All the labels and feeler lines are showing except for value number 5.
    Any help or advice would be greatly appreciated. Thanks
    P.S. I'm using Crystal Reports XI Version 11.0.0.1994 and the client is just running the Crystal Runtime (Maybe this helps... I hope)

    ewilly wrote:Sorry to say that but i'm not unhappy to see i'm not alone to encounter this issue
    I aggree with you : it's only a partial issue as those partitions are mounted under /media with their label name.
    As krusader is able to retrieve the label name i don't think it's an udisks issue so it's more related to a kde functionnality. I looked for missing (optionnal or not) dependencies but without success.
    Any idea is welcome... perhaps opening a bug could help ??
    I have run out of ideas.
    If you tried krusader, yes, it is quite safe to assume it is not a udisks problem, since I tried nautilus which uses udisks2. I also would rule out udev/systemd. Leaves solid, kdelibs, and the kdebase sources.
    As said, on gentoo, kdelibs are compiled with udev dependency which I have not seen in the pkgbuild for kdelibs.
    I think a bug report is a good idea.
    Last edited by artoo (2012-09-06 18:01:49)

  • Can a Pie Chart have a variable number of slices?

    Is there a way to dynamically limit the NUMBER of slices that a pie chart shows?
    For instance, sometimes there might be 10 elements, sometimes 6 (last 4 are 'blank') or maybe 5 (last 5 are blank).
    Yes I know I can keep on reducing/increasing the Excel cells to include...but is there a way to include only certain ones as the data exists?

    My Behaviour tab for my pie chart does not HAVE the "ignore end blanks option"
    A Pie chart behaviour only includes "Display Status, Display Status Key, Entry Effect, Entry Duration and "Animation Enabled"
    I can't seem to find the "Ignore End Blanks" on any tab

  • Getting the field value of a clicked on pie slice in a pie chart?

    I have tried and searched for hours and can not get this
    simple little thing to work.
    I have a pie chart with the following event handler:
    itemClick="chart_click(event)"
    The pie series comes from a simple httpservice that has a
    country and a count:
    <mx:PieSeries
    field="count"
    nameField="value"
    labelPosition="callout"
    calloutGap="5"
    labelFunction="display"
    showDataEffect="{interpolate}">
    All I want to do is capture the value of the nameField (EG:
    Canada)
    I have no problem getting the index of the selected series
    but I can not get the nameField value of that slice. This is what I
    have:
    public function chart_click(e:ChartItemEvent):void
    Alert.show(searchByPieChart.series[e.hitData.chartItem.index].nameField);
    All I get is the string "value" which is the name of the xml
    tag bound to the nameField. What do I need to do ?

    Uggg.
    I got it:
    Alert.show(e.hitData.item.value);

  • Pie Chart Slice Label Percentage + Label

    Hi,
    i'm newbie of Publisher 11. I've a problem. I've created a DataSet and a report containing a pie chart using wizard of Publisher as written at following link:
    http://allaboutobiee.blogspot.it/2012/04/working-with-bi-publisher-11g-part3.html
    My chart shows near each slice the percentage value, but it should show the percentage value + corresponding legend text. I've changed all chart properties on left side of window, but it doesn't work. I read that i must set the value LD_PERCENT_TEXT. But where????? How can i modify XML? I must export the report in OBIEE to have more functionalities? Can you explain me what to do step by step because it's the first time i use Publisher 11
    Thanks
    Giancarlo

    do paste this in the alt text of the chart ,
    Right click the picture , select format picture and go to alt text tab.
    paste this in between the graph element and not at the end or beginning.
    <SliceLabel visible="true">
    <ViewFormat decimalDigit="1" decimalSeparator="." decimalDigitUsed="true" decimalSeparatorUsed="true"/>
    </SliceLabel>

  • Pie Chart slice breakup

    Hi Experts,
    I am having a requirement in OBIEE 11g of showing data as Percentage in a Pie Chart,the chart will be be having two slices(SLICE 1, SLICE 2).
    And the SLICE 1 breakdown needs to be displayed as STACKED BAR CHART.the bar chart should also show data as percentage.
    I am using a common measure for both the charts, in PIE CHART i have shown the measure count as Percentage,But in Staked bar chart i am not able to show the data in percentage.
    A SLICECODE column i am using for the SLICE 1 and SLICE 2 breakup in the PIE CHART, and in the BAR CHART i am showing only SLICE 1 data by placing the SLICECODE column in the Section, and set the "Maximum number of section slider values" as 1 in the section properties
    .Plz suggest me how to show the data as percentage in the bar chart
    Refer the link below for the image.
    http://img577.imageshack.us/img577/2631/waiver.jpg
    thanx in advance.

    The image given uploaded in the link in my below post is the required report output.

  • OBIEE 11g pie chart showing the slices by different measures

    Hi,
    We are using OBIEE 11g. We have a requirement to show PO Met Count , PO Under Count, PO Over Count as a slices in a pie chart. However Pie graph in 11 g is slicing only by a dimension and not by the above measures. This was possible in 10g. I want to know if this a limitation in 11g or is there a way around this.
    Regards
    Purvi
    Edited by: user13054333 on Dec 1, 2010 11:20 PM

    HI,
    I tried to slice by measure by dragging the column to slice size section. I have 3 metrics PO Under Count and PO Over Count which add up to total PO count. So I want my pie to ahve 2 slices one for PO Under Count and other for PO Over count. However when I drag the 2 metrics, it shows me 2 pies, one for Over and the other for Under count.
    Regards'
    Purvi

  • AMX Pie Chart Slice Label

    I'm trying to customize the slice labels in my pie chart. It looks like the textType attribute of the dvtm:sliceLabel tag might provide me what I need, but there is little information. Where does the component get the "text" to display? The percentage is based on the pieDataItem's value attribute in relation to the whole as expected. I have the label and sliceId attributes also set for the pieDataItem component in the dataStamp facet but these are not showing up in the slice label as the text. Is there another component I need to add to the dataStamp facet that will be consumed by the sliceLabel text?

    do paste this in the alt text of the chart ,
    Right click the picture , select format picture and go to alt text tab.
    paste this in between the graph element and not at the end or beginning.
    <SliceLabel visible="true">
    <ViewFormat decimalDigit="1" decimalSeparator="." decimalDigitUsed="true" decimalSeparatorUsed="true"/>
    </SliceLabel>

  • Saving individual 3D pie chart slices

    I want to create an animated pie chart...with individual slices appearing one at a time.  I will do the actual annimation outside of Illustrator (likely in Flash or Motion).  The question is...after making a pie chart, can I save each slice as an individual graphic within Illustrator CS4?  Thanks in advance.

    Yes you can create an art board for each slice you can pull them apart with the direct select tool.
    You can the export them as individual files in a variety of ways.
    However this is the kind of thing you can do straight from Illustrator by releasing the art to a layers to a sequence and exporting as a swf and bring that into flash. You can also choose the option to save the Illustrator layers as flash symbols and simply import that file to the Flash Library.

Maybe you are looking for

  • Error while copying ApShell

    Hi, We have recently installed BPC NW 7.5 While trying to copy ApShell we ar egetting an error msg saying 'There is a dump in ABAP stack' Any idea how to get rid of this? Is there a way to check which ABAP stack was installed. I have a doubt that pro

  • How to get photos from Photo Library, an album on iPhone, into iPhoto on desktop mac

    Hi, this would seem simple, but somehow it's not. I have ~1500 photos on my iPhone in a separate album. They were synced previously with an iTunes library, that I have now lost for good. The images are still on my iPhone and I want to transfer them t

  • Trigger on Insert into a custom table from external application

    This is the problem I am facing. External Application using a different schema lets say extdb on a different server. This writes into a table in a schema called appscustom schema. Appscustom schema is under Oracle Apps. A trigger in Oracle Apps to be

  • Setlling interal order

    Dear All, When we settle the internal order with KO8G the following entry is generated 611013 Expense (P&L) Account 28 453 960.08 731000 Transfer account 119 659 770.10 u2013 731100 Transfer account 64 478 186.98 u2013 284200 Asset under construction

  • Human Task - Notification Setting

    Hi everyone I Want to customize the email message that will be sent to the Assignees. The message is as follows: Task <%/task:task/task:title%> requires your attention. Please access the task from the worklist application. Request ID: <%/task:task/ta