Polar Chart
Team Velocity Comparison
Agile sprint metrics across teams with dual overlay
Output
Python
import matplotlib.pyplot as plt
import numpy as np
metrics = ['Velocity', 'Quality', 'Collaboration', 'Innovation', 'Delivery', 'Morale']
team_alpha = [85, 78, 90, 72, 88, 82]
team_beta = [75, 88, 82, 85, 78, 75]
team_alpha += team_alpha[:1]
team_beta += team_beta[:1]
angles = np.linspace(0, 2 * np.pi, len(metrics), endpoint=False).tolist()
angles += angles[:1]
fig, ax = plt.subplots(figsize=(10, 10), subplot_kw=dict(polar=True), facecolor='#0a0a0f')
ax.set_facecolor('#0a0a0f')
# Team Alpha with glow
for lw, alpha in [(8, 0.1), (5, 0.2), (2.5, 0.4)]:
ax.plot(angles, team_alpha, color='#6CF527', linewidth=lw, alpha=alpha)
ax.plot(angles, team_alpha, color='#6CF527', linewidth=2, label='Team Alpha')
ax.fill(angles, team_alpha, color='#6CF527', alpha=0.15)
# Team Beta with glow
for lw, alpha in [(8, 0.1), (5, 0.2), (2.5, 0.4)]:
ax.plot(angles, team_beta, color='#F5276C', linewidth=lw, alpha=alpha)
ax.plot(angles, team_beta, color='#F5276C', linewidth=2, label='Team Beta')
ax.fill(angles, team_beta, color='#F5276C', alpha=0.15)
ax.set_xticks(angles[:-1])
ax.set_xticklabels(metrics, fontsize=10, color='white', fontweight='500')
ax.set_ylim(0, 100)
ax.set_yticks([25, 50, 75, 100])
ax.set_yticklabels(['', '', '', ''], fontsize=9)
ax.spines['polar'].set_color('#555555')
ax.grid(color='#555555', linewidth=0.8, alpha=0.7)
ax.legend(loc='upper right', bbox_to_anchor=(1.2, 1.1), fontsize=10, facecolor='#0a0a0f', edgecolor='#333333', labelcolor='white')
ax.set_title('Team Velocity Comparison', fontsize=16, color='white', fontweight='bold', pad=20, y=1.08)
plt.tight_layout()
plt.show()
Library
Matplotlib
Category
Part-to-Whole
More Polar Chart examples
☕