How to calculate a pie chart percentage
A pie chart divides a full circle among categories so each slice's size is proportional to its share of the total. To find any slice's percentage, divide that category's value (the "part") by the sum of all categories (the "total") and multiply by 100:
Percentage = (part / total) × 100
Because a whole circle is 360°, each slice's angle is proportional to the same fraction. You can get the angle either by multiplying the percentage by 3.6, or directly from the raw values:
Slice angle = (part / total) × 360 = percentage × 3.6
For example, if a category has a value of 40 out of a total of 200, its share is 40 / 200 = 0.20, which is 20% of the whole and a slice of 0.20 × 360 = 72°. Across every category the percentages must sum to 100% and the angles must sum to 360°.
Why the calculation is needed
Raw counts are hard to compare when totals differ. Converting each value to a percentage of the whole puts every category on a common 0–100 scale, which is what makes a pie chart readable. The angle conversion is the extra step you need if you are drawing the chart by hand or with a protractor, or verifying that a charting tool rendered slices at the correct size.
Common reference points
- 1% of the whole = 3.6° of the circle.
- 10% = 36°; 25% = 90° (a quarter, a right angle); 50% = 180° (a half); 75% = 270°.
- A slice that fills the whole pie is 100% = 360°; an empty category is 0% = 0°.
Sanity checks
The percentage can never exceed 100% unless the part is larger than the total, which usually signals a data-entry mistake. If you total the percentages of every slice and do not land on 100% (allowing for tiny rounding), one of the parts or the total is wrong.