Pie Chart
Productivity App Usage
Dark theme pie showing productivity tool preferences
Output
Python
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots(figsize=(10, 6), facecolor='#0a0a0f')
ax.set_facecolor('#0a0a0f')
apps = ['Notion', 'Slack', 'Trello', 'Asana', 'Monday', 'Others']
users = [28, 25, 18, 12, 10, 7]
colors = ['#0ea5e9', '#38bdf8', '#7dd3fc', '#bae6fd', '#e0f2fe', '#f0f9ff']
wedges, texts, autotexts = ax.pie(users, labels=apps, autopct='%1.0f%%',
colors=colors, startangle=45,
wedgeprops={'edgecolor': '#0a0a0f', 'linewidth': 2})
for text in texts:
text.set_color('white')
text.set_fontsize(10)
for autotext in autotexts:
autotext.set_color('#0c4a6e')
autotext.set_fontweight('bold')
ax.set_title('Productivity App Usage', fontsize=16, fontweight='bold', color='white', pad=20)
plt.tight_layout()
Library
Matplotlib
Category
Basic Charts
More Pie Chart examples
☕