Tested tool guide
Tested browser tools
Checked August 16, 2026
What Pie Chart Generator does, with a checked example
Enter a list of labeled numbers, one slice per line, and the tool renders them as a pie or donut: each slice occupies the same fraction of the circle as its value does of the total. Slice colors, labels, and the legend are all editable, and the finished chart exports as SVG or PNG. The thing users most often misread is what the chart shows: a pie encodes proportions only, never magnitudes. A slice that is 30 percent is always the same 108 degrees, whether the number behind it is 30 or 30,000.
Worked example
A concrete input and expected output from the current implementation.
Input
Rent: 1200
Food: 600
Transport: 300
Savings: 900
->
Expected output
A four-slice pie chart: Rent at 40 percent (144 degrees), Food at 20 percent (72 degrees), Transport at 10 percent (36 degrees), Savings at 30 percent (108 degrees), each slice in its assigned color with matching legend entries.
Each slice's angle is its value divided by the total, 3000, times 360 degrees: 1200 / 3000 x 360 = 144, and so on, which is why the four angles sum to 360 and the percentages to 100.