Pie Chart
Wedding Budget Allocation
Light theme donut showing typical wedding expense distribution
Output
Python
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots(figsize=(10, 6), facecolor='#ffffff')
ax.set_facecolor('#ffffff')
categories = ['Venue', 'Catering', 'Photography', 'Attire', 'Flowers', 'Music', 'Other']
budget = [30, 25, 12, 10, 8, 8, 7]
colors = ['#f472b6', '#ec4899', '#db2777', '#be185d', '#9d174d', '#831843', '#500724']
wedges, texts, autotexts = ax.pie(budget, labels=categories, autopct='%1.0f%%',
colors=colors, startangle=90,
wedgeprops={'width': 0.55, 'edgecolor': 'white', 'linewidth': 2})
for text in texts:
text.set_color('#1f2937')
text.set_fontsize(9)
for autotext in autotexts:
autotext.set_color('white')
autotext.set_fontweight('bold')
autotext.set_fontsize(9)
ax.set_title('Wedding Budget Allocation', fontsize=16, fontweight='bold', color='#1f2937', pad=20)
plt.tight_layout()
Library
Matplotlib
Category
Basic Charts
More Pie Chart examples
☕