From 079a30775f8c0b0e92857d37c3137c1fd1b814c3 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Sun, 7 Dec 2025 21:28:54 +0000 Subject: [PATCH] feat(matplotlib): implement area-basic Update matplotlib implementation for area-basic spec: - Use title matching spec name "Basic Area Chart" - Area chart using fill_between with Python Blue color - Monthly sales data from spec - Y-axis starting from 0 for accurate area representation Closes #515 --- plots/matplotlib/fill_between/area-basic/default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plots/matplotlib/fill_between/area-basic/default.py b/plots/matplotlib/fill_between/area-basic/default.py index 6bc7bcc5e7..4fda4b55c1 100644 --- a/plots/matplotlib/fill_between/area-basic/default.py +++ b/plots/matplotlib/fill_between/area-basic/default.py @@ -30,7 +30,7 @@ # Labels and styling ax.set_xlabel("Month", fontsize=20) ax.set_ylabel("Sales", fontsize=20) -ax.set_title("Monthly Sales Volume", fontsize=20) +ax.set_title("Basic Area Chart", fontsize=20) ax.tick_params(axis="both", labelsize=16) ax.grid(True, alpha=0.3, linestyle="--")