Pie Chart
Startup Funding Rounds
Dark theme exploded pie showing startup funding stage distribution
Output
Python
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots(figsize=(10, 6), facecolor='#0a0a0f')
ax.set_facecolor('#0a0a0f')
stages = ['Seed', 'Series A', 'Series B', 'Series C', 'Series D+']
funding = [35, 28, 20, 12, 5]
colors = ['#22d3ee', '#06b6d4', '#0891b2', '#0e7490', '#155e75']
explode = (0.08, 0.04, 0.02, 0, 0)
wedges, texts, autotexts = ax.pie(funding, labels=stages, autopct='%1.0f%%',
colors=colors, explode=explode, startangle=135,
shadow=True,
wedgeprops={'edgecolor': '#0a0a0f', 'linewidth': 2})
for text in texts:
text.set_color('white')
text.set_fontsize(11)
for autotext in autotexts:
autotext.set_color('white')
autotext.set_fontweight('bold')
ax.set_title('Startup Funding Rounds', fontsize=16, fontweight='bold', color='white', pad=20)
plt.tight_layout()
Library
Matplotlib
Category
Basic Charts
More Pie Chart examples
☕