Search for all pages containing PieChart
PieChart
✖
PieChart
Details and Options




- Pie charts are also known as donut charts when a hole is left in the middle.
- PieChart shows the values in a dataset as proportional slices of a whole circle. Pie charts are typically used when the data is small.
- Data elements for PieChart can be given in the following forms:
-
yi a pure sector value Quantity[yi,unit] sector value with a unit wi[yi,…] a sector with value yi and wrapper wi formi->mi a sector form with metadata mi - Data not given in these forms is ignored in forming the pie chart.
- Datasets for PieChart can be given in the following forms:
-
{e1,e2,…} list of elements with or without wrappers <k1y1,k2y2,… > association of keys and values TimeSeries[…],EventSeries[…],TemporalData[…] time series, event series, and temporal data WeightedData[…],EventData[…] augmented datasets w[{e1,e2,…},…] wrapper applied to a whole dataset w[{data1,data1,…},…] wrapper applied to all datasets - PieChart[Tabular[…]cspec] extracts and plots values from the tabular object using the column specification cspec.
- The following forms of column specifications cspec are allowed for plotting tabular data:
-
col plot values from column col {col1,col2,…,coln} plot columns {col1, …, coln} as a group of values - The following wrappers can be used for chart elements:
-
Annotation[e,label] provide an annotation Button[e,action] define an action to execute when the element is clicked Callout[e,label] display the element with a callout EventHandler[e,…] define a general event handler for the element Hyperlink[e,uri] make the element act as a hyperlink Labeled[e,…] display the element with labeling Legended[e,…] include features of the element in a chart legend Mouseover[e,over] make the element show a mouseover form PopupWindow[e,cont] attach a popup window to the element StatusArea[e,label] display in the status area when the element is moused over Style[e,opts] show the element using the specified styles Tooltip[e,label] attach an arbitrary tooltip to the element - In PieChart, Labeled and Placed allow the following positions:
-
"RadialOuter","RadialCenter","RadialInner" positions within sectors "RadialOutside","RadialInside","RadialEdge" positions outside sectors "RadialCallout", "VerticalCallout" positions with callout lines {{sθ,sr},{lx,ly}} scaled position {lx,ly} in the label at scaled polar position {sθ,sr} in the sector - In PieChart, Callout allows the following positions pos:
-
Automatic automatic placement {x,y} position in the graphic Scaled[{sθ,sr}] scaled polar position {sθ,sr} in the sector {pos,{lx,ly}} scaled position {lx,ly} in the label at position pos - PieChart has the same options as Graphics with the following additions and changes: [List of all options]
-
ChartBaseStyle Automatic overall style for sectors ChartElementFunction Automatic how to generate raw graphics for sectors ChartLabels None labels for data elements and datasets ChartLayout Automatic overall layout to use ChartLegends None legends for data elements and datasets ChartStyle Automatic style for sector ColorFunction Automatic how to color sectors ColorFunctionScaling True whether to normalize arguments to ColorFunction LabelingFunction Automatic how to label sectors LabelingSize Automatic maximum size of callouts and labels LegendAppearance Automatic overall appearance of legends PerformanceGoal $PerformanceGoal aspects of performance to try to optimize PlotRange Automatic range of values to include PlotTheme $PlotTheme overall theme for the chart PolarAxes False whether to draw polar axes PolarAxesOrigin Automatic where to draw polar axes PolarGridLines None polar gridlines to draw PolarTicks Automatic polar axes ticks SectorOrigin Automatic initial angle and radius of sectors SectorSpacing Automatic spacing between sectors TargetUnits Automatic units to display in the chart - Possible settings for ChartLayout that show multiple datasets in a single display panel include:
-
"Grouped" separate the data for each dataset "Stacked" accumulate the data for each dataset - Possible settings for ChartLayout that show individual datasets in different panels include:
-
"Column" use separate charts in a column of panels "Row" use separate charts in a row of panels {"Column",k},{"Row",k} use k columns or rows {"Column",UpTo[k]},{"Row",UpTo[k]} use at most k columns or rows - The arguments supplied to ChartElementFunction are the sector region {{θmin,θmax},{rmin,rmax}}, the values yi, and the metadata {m1,m2,…} from each level in a nested list of datasets.
- A list of built-in settings for ChartElementFunction can be obtained from ChartElementData["PieChart"].
- The argument supplied to ColorFunction is yi.
- Style and other specifications from options and other constructs in PieChart are effectively applied in the order ChartStyle, ColorFunction, Style and other wrappers, and ChartElementFunction, with later specifications overriding earlier ones.
-
AlignmentPoint Center the default point in the graphic to align with AspectRatio Automatic ratio of height to width Axes False whether to draw axes AxesLabel None axes labels AxesOrigin Automatic where axes should cross AxesStyle {} style specifications for the axes Background None background color for the plot BaselinePosition Automatic how to align with a surrounding text baseline BaseStyle {} base style specifications for the graphic ChartBaseStyle Automatic overall style for sectors ChartElementFunction Automatic how to generate raw graphics for sectors ChartLabels None labels for data elements and datasets ChartLayout Automatic overall layout to use ChartLegends None legends for data elements and datasets ChartStyle Automatic style for sector ColorFunction Automatic how to color sectors ColorFunctionScaling True whether to normalize arguments to ColorFunction ContentSelectable Automatic whether to allow contents to be selected CoordinatesToolOptions Automatic detailed behavior of the coordinates tool Epilog {} primitives rendered after the main plot FormatType TraditionalForm the default format type for text Frame False whether to put a frame around the plot FrameLabel None frame labels FrameStyle {} style specifications for the frame FrameTicks Automatic frame ticks FrameTicksStyle {} style specifications for frame ticks GridLines None grid lines to draw GridLinesStyle {} style specifications for grid lines ImageMargins 0. the margins to leave around the graphic ImagePadding All what extra padding to allow for labels etc. ImageSize Automatic the absolute size at which to render the graphic LabelingFunction Automatic how to label sectors LabelingSize Automatic maximum size of callouts and labels LabelStyle {} style specifications for labels LegendAppearance Automatic overall appearance of legends Method Automatic details of graphics methods to use PerformanceGoal $PerformanceGoal aspects of performance to try to optimize PlotLabel None an overall label for the plot PlotRange Automatic range of values to include PlotRangeClipping False whether to clip at the plot range PlotRangePadding Automatic how much to pad the range of values PlotRegion Automatic the final display region to be filled PlotTheme $PlotTheme overall theme for the chart PolarAxes False whether to draw polar axes PolarAxesOrigin Automatic where to draw polar axes PolarGridLines None polar gridlines to draw PolarTicks Automatic polar axes ticks PreserveImageOptions Automatic whether to preserve image options when displaying new versions of the same graphic Prolog {} primitives rendered before the main plot RotateLabel True whether to rotate y labels on the frame SectorOrigin Automatic initial angle and radius of sectors SectorSpacing Automatic spacing between sectors TargetUnits Automatic units to display in the chart Ticks Automatic axes ticks TicksStyle {} style specifications for axes ticks


List of all options




Examples
open allclose allBasic Examples (5)Summary of the most common use cases
Generate a pie chart for a list of values:

https://wolfram.com/xid/0cg4kc6t7-em9h6k

Generate a donut chart for a list of values:

https://wolfram.com/xid/0cg4kc6t7-ipv01k

Generate a pie chart for multiple datasets:

https://wolfram.com/xid/0cg4kc6t7-84qozl

Show multiple sets as a row of pie charts:

https://wolfram.com/xid/0cg4kc6t7-ggst4z


https://wolfram.com/xid/0cg4kc6t7-drw36v


https://wolfram.com/xid/0cg4kc6t7-f9oo42


https://wolfram.com/xid/0cg4kc6t7-e2us0c

Scope (38)Survey of the scope of standard use cases
Data and Layouts (13)
Items in a dataset are grouped together:

https://wolfram.com/xid/0cg4kc6t7-j213wq

Datasets do not need to have the same number of items:

https://wolfram.com/xid/0cg4kc6t7-4nweqa

Nonreal data is taken to be missing and typically is ignored in the pie chart:

https://wolfram.com/xid/0cg4kc6t7-bibvmw


https://wolfram.com/xid/0cg4kc6t7-7bo8p2


https://wolfram.com/xid/0cg4kc6t7-c1j6si

The time stamps in TimeSeries, EventSeries, and TemporalData are ignored:

https://wolfram.com/xid/0cg4kc6t7-erdnh4

The values in associations are taken as the values of the sectors:

https://wolfram.com/xid/0cg4kc6t7-fapjdf


https://wolfram.com/xid/0cg4kc6t7-berasr

Use the keys as callouts above the sectors:

https://wolfram.com/xid/0cg4kc6t7-tjqoa8


https://wolfram.com/xid/0cg4kc6t7-laiqvh


https://wolfram.com/xid/0cg4kc6t7-3hzlhk

The weights in WeightedData are ignored:

https://wolfram.com/xid/0cg4kc6t7-8nlbze

The censoring and truncation information in EventData is ignored:

https://wolfram.com/xid/0cg4kc6t7-78g22i

Use different layouts to display multiple datasets:

https://wolfram.com/xid/0cg4kc6t7-jem942

Control the direction of sectors:

https://wolfram.com/xid/0cg4kc6t7-crsw8z

Control the starting angle of sectors:

https://wolfram.com/xid/0cg4kc6t7-b6l07n

Control the starting radius of sectors:

https://wolfram.com/xid/0cg4kc6t7-f11r5t

Adjust the spacing between sectors and groups of sectors:

https://wolfram.com/xid/0cg4kc6t7-ire63a

Tabular Data (1)
Get tabular data, counted by the "class" and "survived" columns:

https://wolfram.com/xid/0cg4kc6t7-0og8bm

Create a chart of how many passengers were in each ticket class:

https://wolfram.com/xid/0cg4kc6t7-q7iydl


https://wolfram.com/xid/0cg4kc6t7-n5slo8

Show how many passengers survived and how many perished:

https://wolfram.com/xid/0cg4kc6t7-mg8iiy


https://wolfram.com/xid/0cg4kc6t7-f7dh60

Display the number of passengers who survived by ticket class:

https://wolfram.com/xid/0cg4kc6t7-cjoxrq


https://wolfram.com/xid/0cg4kc6t7-zw9gne

Use stacked sectors for the display:

https://wolfram.com/xid/0cg4kc6t7-h3d3i4

Wrappers (5)
Use wrappers on individual data, datasets, or collections of datasets:

https://wolfram.com/xid/0cg4kc6t7-fv6xu4


https://wolfram.com/xid/0cg4kc6t7-d78b5k

Override the default tooltips:

https://wolfram.com/xid/0cg4kc6t7-dw7akx

Use any object in the tooltip:

https://wolfram.com/xid/0cg4kc6t7-bshk9y

Use PopupWindow to provide additional drilldown information:

https://wolfram.com/xid/0cg4kc6t7-9oa0q

Button can be used to trigger any action:

https://wolfram.com/xid/0cg4kc6t7-j1231b

Styling and Appearance (7)
Use an explicit list of styles for the sectors:

https://wolfram.com/xid/0cg4kc6t7-fihngk

Use any gradient or indexed color schemes from ColorData:

https://wolfram.com/xid/0cg4kc6t7-gp1e

Use color schemes designed for charting:

https://wolfram.com/xid/0cg4kc6t7-c4f5rf


https://wolfram.com/xid/0cg4kc6t7-fchssf

ChartBaseStyle can be used to set an initial style for all chart elements:

https://wolfram.com/xid/0cg4kc6t7-prid3j

Style can be used to override styles:

https://wolfram.com/xid/0cg4kc6t7-o2q0l

Use built-in programmatically generated sectors:

https://wolfram.com/xid/0cg4kc6t7-wvz8c


https://wolfram.com/xid/0cg4kc6t7-f2wd4m

For detailed settings use Palettes ▶ ChartElementSchemes:

https://wolfram.com/xid/0cg4kc6t7-fhi6g2

Use a theme with a high-contrast color scheme and bezel sectors:

https://wolfram.com/xid/0cg4kc6t7-cp1r5h


https://wolfram.com/xid/0cg4kc6t7-cc11m1

Labeling and Legending (12)
Use Labeled to add a label to a sector:

https://wolfram.com/xid/0cg4kc6t7-keu5cx

Use symbolic positions for label placement:

https://wolfram.com/xid/0cg4kc6t7-dknv2m


https://wolfram.com/xid/0cg4kc6t7-hkqmb4


https://wolfram.com/xid/0cg4kc6t7-7k69yc

Provide categorical labels for the columns of data:

https://wolfram.com/xid/0cg4kc6t7-xqnad


https://wolfram.com/xid/0cg4kc6t7-lqpe2a


https://wolfram.com/xid/0cg4kc6t7-jvgfhd

Use Placed to control the positioning of labels, using the same positions as for Labeled:

https://wolfram.com/xid/0cg4kc6t7-ocux9

Use Callout to add a label to a sector:

https://wolfram.com/xid/0cg4kc6t7-hrgnu6

Change the appearance of the callout:

https://wolfram.com/xid/0cg4kc6t7-pmmdcv

Automatically position callouts:

https://wolfram.com/xid/0cg4kc6t7-22233u

Provide value labels for sectors by using LabelingFunction:

https://wolfram.com/xid/0cg4kc6t7-ci7n67

Generate callouts from the data:

https://wolfram.com/xid/0cg4kc6t7-1l8t7w

Add categorical legend entries for the columns of data:

https://wolfram.com/xid/0cg4kc6t7-dnvp16


https://wolfram.com/xid/0cg4kc6t7-b2cb3h

Use Legended to add additional legend entries:

https://wolfram.com/xid/0cg4kc6t7-mpyvi

Use Placed to affect the positioning of legends:

https://wolfram.com/xid/0cg4kc6t7-gizo69

Options (75)Common values & functionality for each option
ChartBaseStyle (5)
Use ChartBaseStyle to style sectors:

https://wolfram.com/xid/0cg4kc6t7-gkdy1d

ChartBaseStyle combines with ChartStyle:

https://wolfram.com/xid/0cg4kc6t7-hilrob

ChartStyle may override settings for ChartBaseStyle:

https://wolfram.com/xid/0cg4kc6t7-nykrk

ChartBaseStyle combines with Style:

https://wolfram.com/xid/0cg4kc6t7-e8vs4c

Style may override settings for ChartBaseStyle:

https://wolfram.com/xid/0cg4kc6t7-njm38a

ChartBaseStyle combines with ColorFunction:

https://wolfram.com/xid/0cg4kc6t7-mgk40x

ColorFunction may override settings for ChartBaseStyle:

https://wolfram.com/xid/0cg4kc6t7-gx8lzq

ChartElementFunction (6)
Possible string values for ChartElementFunction:

https://wolfram.com/xid/0cg4kc6t7-82zet

For detailed settings, use Palettes ▶ ChartElementSchemes:

https://wolfram.com/xid/0cg4kc6t7-enr6pq


https://wolfram.com/xid/0cg4kc6t7-33mdzr


https://wolfram.com/xid/0cg4kc6t7-wtngoz


https://wolfram.com/xid/0cg4kc6t7-nm3mz4

Use ChartElementData to specify the full chart element rendering function:

https://wolfram.com/xid/0cg4kc6t7-rrwiy

Write a custom ChartElementFunction:

https://wolfram.com/xid/0cg4kc6t7-hzymn5

https://wolfram.com/xid/0cg4kc6t7-irvh9i


https://wolfram.com/xid/0cg4kc6t7-f8fo72

https://wolfram.com/xid/0cg4kc6t7-iwghyt

Use metadata passed on from the input, in this case charting the data:

https://wolfram.com/xid/0cg4kc6t7-fvk48j

https://wolfram.com/xid/0cg4kc6t7-c5ph2v

https://wolfram.com/xid/0cg4kc6t7-raamjl

Built-in element functions may have options; use Palettes ▶ ChartElementSchemes to set them:

https://wolfram.com/xid/0cg4kc6t7-fjaidg


https://wolfram.com/xid/0cg4kc6t7-eqia3q

ChartLabels (8)
By default, labels are placed radially centered:

https://wolfram.com/xid/0cg4kc6t7-b6vqtn

Labeled wrappers in data will place additional labels:

https://wolfram.com/xid/0cg4kc6t7-h3lfo1

Use Placed to control label placement:

https://wolfram.com/xid/0cg4kc6t7-jtjhg1


https://wolfram.com/xid/0cg4kc6t7-40261


https://wolfram.com/xid/0cg4kc6t7-0qtyb2

Coordinate based placement relative to a sector:

https://wolfram.com/xid/0cg4kc6t7-w3f0f

Place all labels at the first outer corner and vary the coordinates within the label:

https://wolfram.com/xid/0cg4kc6t7-hcxj83

Use the third argument to Placed to control formatting:

https://wolfram.com/xid/0cg4kc6t7-jpbwst


https://wolfram.com/xid/0cg4kc6t7-ofibw3


https://wolfram.com/xid/0cg4kc6t7-eme0ru

By default, labels are associated with columns of data:

https://wolfram.com/xid/0cg4kc6t7-c41xrn

Associate labels with rows or datasets:

https://wolfram.com/xid/0cg4kc6t7-bxwbr9


https://wolfram.com/xid/0cg4kc6t7-brr87x

Use Placed to affect placements:

https://wolfram.com/xid/0cg4kc6t7-do9c6b

Use Callout to connect the labels to the sectors:

https://wolfram.com/xid/0cg4kc6t7-xgj9b7


https://wolfram.com/xid/0cg4kc6t7-ctd6wo

ChartLayout (4)
ChartLayout is grouped by default in concentric rings:

https://wolfram.com/xid/0cg4kc6t7-ct00zg


https://wolfram.com/xid/0cg4kc6t7-bgfd7b


https://wolfram.com/xid/0cg4kc6t7-c5fb3m

The stacked layout can effectively display many datasets:

https://wolfram.com/xid/0cg4kc6t7-cce7z5

Place each set in a separate panel:

https://wolfram.com/xid/0cg4kc6t7-b8mqto

Use a row instead of a column:

https://wolfram.com/xid/0cg4kc6t7-fokl8z


https://wolfram.com/xid/0cg4kc6t7-c9ydr9


https://wolfram.com/xid/0cg4kc6t7-hvjt9m

ChartLegends (8)
Generate a legend based on chart style:

https://wolfram.com/xid/0cg4kc6t7-gfvv31

Use Legended to add additional legend entries:

https://wolfram.com/xid/0cg4kc6t7-nsr5vg

Use Legended to specify individual legend entries:

https://wolfram.com/xid/0cg4kc6t7-c901ne

Legended adds additional legend entries:

https://wolfram.com/xid/0cg4kc6t7-bv8j7g

Generate a legend for datasets:

https://wolfram.com/xid/0cg4kc6t7-bwg6ep

Unused legend labels are dropped:

https://wolfram.com/xid/0cg4kc6t7-gsg25

Legends can be applied to several dimensions:

https://wolfram.com/xid/0cg4kc6t7-biznmd

Use Placed to control the placement of legends:

https://wolfram.com/xid/0cg4kc6t7-eaxd0g

ChartStyle (7)
Use ChartStyle to style sectors:

https://wolfram.com/xid/0cg4kc6t7-m5lye


https://wolfram.com/xid/0cg4kc6t7-e6xe38

Use gradient colors from ColorData:

https://wolfram.com/xid/0cg4kc6t7-4cjhr

Use indexed colors from ColorData:

https://wolfram.com/xid/0cg4kc6t7-iclxc4

Use indexed colors optimized for charting:

https://wolfram.com/xid/0cg4kc6t7-cfbyi5


https://wolfram.com/xid/0cg4kc6t7-ejbsca


https://wolfram.com/xid/0cg4kc6t7-cm40br


https://wolfram.com/xid/0cg4kc6t7-da9kf2


https://wolfram.com/xid/0cg4kc6t7-dwlbwl

Style both rows and columns of data:

https://wolfram.com/xid/0cg4kc6t7-gcadcd

With both row and column styles, the last style may override earlier ones:

https://wolfram.com/xid/0cg4kc6t7-etkt60

Style overrides settings for ChartStyle:

https://wolfram.com/xid/0cg4kc6t7-r2mo0


https://wolfram.com/xid/0cg4kc6t7-pb2ycl

ColorFunction overrides settings for ChartStyle:

https://wolfram.com/xid/0cg4kc6t7-4do26


https://wolfram.com/xid/0cg4kc6t7-j4ek6q

ColorFunction (3)

https://wolfram.com/xid/0cg4kc6t7-d3hk7z

Use ColorFunctionScaling->False to get unscaled height values:

https://wolfram.com/xid/0cg4kc6t7-kqwxgj

ColorFunction overrides styles in ChartStyle:

https://wolfram.com/xid/0cg4kc6t7-k6tybo

Use ColorFunction to combine different style effects:

https://wolfram.com/xid/0cg4kc6t7-4lgu4v

ColorFunctionScaling (3)
By default, scaled height values are used:

https://wolfram.com/xid/0cg4kc6t7-csyn1w

Set ColorFunctionScaling to False to allow raw values to be passed to the color function:

https://wolfram.com/xid/0cg4kc6t7-ksgzv3

Use ColorFunctionScaling->False to get unscaled height values:

https://wolfram.com/xid/0cg4kc6t7-4vis1

ImageSize (7)
Use named sizes, such as Tiny, Small, Medium and Large:

https://wolfram.com/xid/0cg4kc6t7-cpcypn

Specify the width of the plot:

https://wolfram.com/xid/0cg4kc6t7-4dapt

Specify the height of the plot:

https://wolfram.com/xid/0cg4kc6t7-do6y4m

Allow the width and height to be up to a certain size:

https://wolfram.com/xid/0cg4kc6t7-c9m30b

Specify the width and height for a graphic, padding with space if necessary:

https://wolfram.com/xid/0cg4kc6t7-frhsjr

Use maximum sizes for the width and height:

https://wolfram.com/xid/0cg4kc6t7-c4w8dd

Use ImageSizeFull to fill the available space in an object:

https://wolfram.com/xid/0cg4kc6t7-x1908e

https://wolfram.com/xid/0cg4kc6t7-eatvxc

Specify the image size as a fraction of the available space:

https://wolfram.com/xid/0cg4kc6t7-daw9hy

LabelingFunction (7)
Use automatic labeling by values through Tooltip and StatusArea:

https://wolfram.com/xid/0cg4kc6t7-o9zqx5


https://wolfram.com/xid/0cg4kc6t7-8yasi

Use Placed to control label placement:

https://wolfram.com/xid/0cg4kc6t7-gl2ad7


https://wolfram.com/xid/0cg4kc6t7-eyt0bn


https://wolfram.com/xid/0cg4kc6t7-iqmvm8

Coordinate-based placement relative to a sector:

https://wolfram.com/xid/0cg4kc6t7-b11rh3

Use Callout to place labels automatically:

https://wolfram.com/xid/0cg4kc6t7-ocffyd

Control the formatting of labels:

https://wolfram.com/xid/0cg4kc6t7-cxc7ri

Use the given chart labels as arguments to the labeling function:

https://wolfram.com/xid/0cg4kc6t7-n9xh0i

Place complete labels as tooltips:

https://wolfram.com/xid/0cg4kc6t7-ci9a41

LabelingSize (4)
Textual labels are shown at their actual sizes:

https://wolfram.com/xid/0cg4kc6t7-t7qmke

Image labels are automatically resized:

https://wolfram.com/xid/0cg4kc6t7-vny20w

Specify a maximum size for textual labels:

https://wolfram.com/xid/0cg4kc6t7-bz8jld

Specify a maximum size for image labels:

https://wolfram.com/xid/0cg4kc6t7-hy9uc7

Show image labels at their natural sizes:

https://wolfram.com/xid/0cg4kc6t7-4rxwe0

PerformanceGoal (3)
Generate a pie chart with interactive highlighting:

https://wolfram.com/xid/0cg4kc6t7-e280bs

Emphasize performance by disabling interactive behaviors:

https://wolfram.com/xid/0cg4kc6t7-bu9b2g

Typically, less memory is required for noninteractive charts:

https://wolfram.com/xid/0cg4kc6t7-1eytp

PlotTheme (1)
SectorOrigin (4)
By default, sectors start on the left and add clockwise:

https://wolfram.com/xid/0cg4kc6t7-ilmu1d

Generate a donut chart for a list of values:

https://wolfram.com/xid/0cg4kc6t7-caop8o

Reverse the direction of the sectors:

https://wolfram.com/xid/0cg4kc6t7-chw0hm


https://wolfram.com/xid/0cg4kc6t7-fff0nr

SectorSpacing (5)
Use automatically determined spacing between sectors:

https://wolfram.com/xid/0cg4kc6t7-gbo7on


https://wolfram.com/xid/0cg4kc6t7-bhqoh0


https://wolfram.com/xid/0cg4kc6t7-cyfias

Use explicit spacing between sectors:

https://wolfram.com/xid/0cg4kc6t7-vppz2r

Use explicit spacing between sectors and groups of sectors:

https://wolfram.com/xid/0cg4kc6t7-99aub

Applications (15)Sample problems that can be solved with this function

https://wolfram.com/xid/0cg4kc6t7-c39y6c


https://wolfram.com/xid/0cg4kc6t7-i3s3hu

Improve legibility of small segments by charting them with an auxiliary pie chart:

https://wolfram.com/xid/0cg4kc6t7-cbsefn

https://wolfram.com/xid/0cg4kc6t7-g2i76y


https://wolfram.com/xid/0cg4kc6t7-i8k0w5

Improve legibility of small segments by charting them with an auxiliary bar chart:

https://wolfram.com/xid/0cg4kc6t7-brcxtu
Use a stacked bar chart to represent small segments:

https://wolfram.com/xid/0cg4kc6t7-bbs0iv


https://wolfram.com/xid/0cg4kc6t7-dk2yt8

Click on the sectors to hear the name of the country and its GDP per capita:

https://wolfram.com/xid/0cg4kc6t7-j5wzo

https://wolfram.com/xid/0cg4kc6t7-o67fa

Proportion of each color in the United States flag:

https://wolfram.com/xid/0cg4kc6t7-2yjnzx

Tally the most frequently used colors:

https://wolfram.com/xid/0cg4kc6t7-n6tpvu


https://wolfram.com/xid/0cg4kc6t7-uyaie


https://wolfram.com/xid/0cg4kc6t7-7iorwg

Percentage of total elements discovered by countries:

https://wolfram.com/xid/0cg4kc6t7-di56qh

https://wolfram.com/xid/0cg4kc6t7-r5aqzn

https://wolfram.com/xid/0cg4kc6t7-vdw89p

Count the number of times each letter occurs in a sentence:

https://wolfram.com/xid/0cg4kc6t7-bsopdh

https://wolfram.com/xid/0cg4kc6t7-5i3tay

Group sectors by product type:

https://wolfram.com/xid/0cg4kc6t7-qeiibp

https://wolfram.com/xid/0cg4kc6t7-i9xb0i

https://wolfram.com/xid/0cg4kc6t7-dgec8c

Create a pie chart capable of interactive drilling down of a stock portfolio:

https://wolfram.com/xid/0cg4kc6t7-k83ikd

https://wolfram.com/xid/0cg4kc6t7-dkskoe

https://wolfram.com/xid/0cg4kc6t7-d71r81

https://wolfram.com/xid/0cg4kc6t7-g6llvx

https://wolfram.com/xid/0cg4kc6t7-fvsa5a
Mouse over a sector to get a pie chart of the companies that comprise that sector:

https://wolfram.com/xid/0cg4kc6t7-m4l8l5

Click on a sector to get a pie chart of the companies that comprise that sector:

https://wolfram.com/xid/0cg4kc6t7-eilhnz

Display oil data for the G15 countries using pie charts to indicate import and export:

https://wolfram.com/xid/0cg4kc6t7-btyh94

https://wolfram.com/xid/0cg4kc6t7-8upf9

Create a chart of individual pie chart sectors:

https://wolfram.com/xid/0cg4kc6t7-br8oc7

https://wolfram.com/xid/0cg4kc6t7-s6qup

https://wolfram.com/xid/0cg4kc6t7-h53giv

Create a pie chart histogram of element discovery years from 1700 to 2000:

https://wolfram.com/xid/0cg4kc6t7-ubmlx
Define a chart element function that stores bin intervals and count data using Sow:

https://wolfram.com/xid/0cg4kc6t7-dafduz
Create a histogram of the discovery years and store the bin interval and frequencies:

https://wolfram.com/xid/0cg4kc6t7-ms6oww
Create a histogram pie chart of element discovery years:

https://wolfram.com/xid/0cg4kc6t7-wsls8

Visualize chemical composition using pie charts:

https://wolfram.com/xid/0cg4kc6t7-jpi61c

https://wolfram.com/xid/0cg4kc6t7-scagyn

Analyze locations of strong earthquakes:

https://wolfram.com/xid/0cg4kc6t7-tksaen



https://wolfram.com/xid/0cg4kc6t7-i4ye96


https://wolfram.com/xid/0cg4kc6t7-blepzp


https://wolfram.com/xid/0cg4kc6t7-zu3vea
Count the number of earthquakes per region:

https://wolfram.com/xid/0cg4kc6t7-t0q252


https://wolfram.com/xid/0cg4kc6t7-tdqi7n

Select regions with earthquakes:

https://wolfram.com/xid/0cg4kc6t7-bj5cwe

https://wolfram.com/xid/0cg4kc6t7-vqpbc7

Properties & Relations (4)Properties of the function, and connections to other functions
Use PieChart3D to get a 3D rendering of pie charts:

https://wolfram.com/xid/0cg4kc6t7-ph6w8

PieChart is a special case of SectorChart:

https://wolfram.com/xid/0cg4kc6t7-d5p17r

Use BarChart and BarChart3D to draw a list of data as bars:

https://wolfram.com/xid/0cg4kc6t7-0srj1

Use ListPlot and ListLinePlot to produce line graphs:

https://wolfram.com/xid/0cg4kc6t7-e6grf

Wolfram Research (2008), PieChart, Wolfram Language function, https://reference.wolfram.com/language/ref/PieChart.html (updated 2025).
Text
Wolfram Research (2008), PieChart, Wolfram Language function, https://reference.wolfram.com/language/ref/PieChart.html (updated 2025).
Wolfram Research (2008), PieChart, Wolfram Language function, https://reference.wolfram.com/language/ref/PieChart.html (updated 2025).
CMS
Wolfram Language. 2008. "PieChart." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2025. https://reference.wolfram.com/language/ref/PieChart.html.
Wolfram Language. 2008. "PieChart." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2025. https://reference.wolfram.com/language/ref/PieChart.html.
APA
Wolfram Language. (2008). PieChart. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/PieChart.html
Wolfram Language. (2008). PieChart. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/PieChart.html
BibTeX
@misc{reference.wolfram_2025_piechart, author="Wolfram Research", title="{PieChart}", year="2025", howpublished="\url{https://reference.wolfram.com/language/ref/PieChart.html}", note=[Accessed: 04-April-2025
]}
BibLaTeX
@online{reference.wolfram_2025_piechart, organization={Wolfram Research}, title={PieChart}, year={2025}, url={https://reference.wolfram.com/language/ref/PieChart.html}, note=[Accessed: 04-April-2025
]}