Pie Chart
Team Meeting Types
Light theme pie showing distribution of meeting types
Output
Python
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots(figsize=(10, 6), facecolor='#ffffff')
ax.set_facecolor('#ffffff')
meetings = ['Stand-ups', 'Project Reviews', '1-on-1s', 'Brainstorming', 'All-hands', 'Training']
hours = [25, 22, 18, 15, 12, 8]
colors = ['#f97316', '#fb923c', '#fdba74', '#fed7aa', '#ffedd5', '#fff7ed']
wedges, texts, autotexts = ax.pie(hours, labels=meetings, autopct='%1.0f%%',
colors=colors, startangle=45,
wedgeprops={'edgecolor': 'white', 'linewidth': 2})
for text in texts:
text.set_color('#1f2937')
text.set_fontsize(10)
for autotext in autotexts:
autotext.set_color('#7c2d12')
autotext.set_fontweight('bold')
ax.set_title('Weekly Meeting Time Distribution', fontsize=16, fontweight='bold', color='#1f2937', pad=20)
plt.tight_layout()
Library
Matplotlib
Category
Basic Charts
More Pie Chart examples
☕