Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plots/pygal/area/area-basic/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pygal.style import Style


# Data
# Data - monthly sales example from spec
months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun"]
sales = [100, 150, 130, 180, 200, 220]

Expand All @@ -29,7 +29,7 @@
opacity_hover=0.7,
)

# Create chart
# Create area chart (Line chart with fill=True)
chart = pygal.Line(
width=4800,
height=2700,
Expand Down
Loading