Pie Chart

Food Delivery Apps

Light theme donut showing food delivery platform market share

Output
Food Delivery Apps
Python
import matplotlib.pyplot as plt
import numpy as np

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

apps = ['DoorDash', 'Uber Eats', 'Grubhub', 'Postmates', 'Others']
market = [38, 28, 18, 10, 6]
colors = ['#dc2626', '#ef4444', '#f87171', '#fca5a5', '#fecaca']

wedges, texts, autotexts = ax.pie(market, labels=apps, autopct='%1.0f%%',
                                   colors=colors, startangle=90,
                                   wedgeprops={'width': 0.55, 'edgecolor': 'white', 'linewidth': 2})

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

ax.set_title('Food Delivery Market Share', 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