Pie Chart

Quarterly Revenue Split

Light theme semi-donut chart showing quarterly revenue distribution

Output
Quarterly Revenue Split
Python
import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots(figsize=(10, 6), facecolor='#ffffff')
ax.set_facecolor('#ffffff')

quarters = ['Q1', 'Q2', 'Q3', 'Q4']
revenue = [22, 28, 25, 25]
colors = ['#4ade80', '#22c55e', '#16a34a', '#15803d']

wedges, texts, autotexts = ax.pie(revenue, labels=quarters, autopct='%1.1f%%',
                                   colors=colors, startangle=180, counterclock=False,
                                   wedgeprops={'width': 0.5, 'edgecolor': 'white', 'linewidth': 3})

for text in texts:
    text.set_color('#1f2937')
    text.set_fontsize(12)
    text.set_fontweight('bold')
for autotext in autotexts:
    autotext.set_color('white')
    autotext.set_fontweight('bold')

ax.set_title('Quarterly Revenue Split', fontsize=16, fontweight='bold', color='#1f2937', pad=20)
plt.tight_layout()
Library

Matplotlib

Category

Basic Charts

Did this help you?

Support PyLucid to keep it free & growing

Support