Skip to content

Commit 870ff67

Browse files
feat(matplotlib): implement line-basic (#476)
## Summary Implements `line-basic` for **matplotlib** library. **Parent Issue:** #205 **Sub-Issue:** #452 **Base Branch:** `plot/line-basic` **Attempt:** 1/3 ## Implementation - `plots/matplotlib/plot/line-basic/default.py` ## Changes - Basic line plot implementation using matplotlib's `ax.plot()` method - Uses Python Blue color (#306998) from the style guide - Includes markers (8px) for data point visibility - Follows spec data structure with time/value columns - Proper axis labels, title, and grid styling Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
1 parent dc54b03 commit 870ff67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plots/matplotlib/plot/line-basic/default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# Create plot
1414
fig, ax = plt.subplots(figsize=(16, 9))
15-
ax.plot(data["time"], data["value"], linewidth=2, color="#306998", marker="o", markersize=4)
15+
ax.plot(data["time"], data["value"], linewidth=2, color="#306998", marker="o", markersize=8)
1616

1717
# Labels and styling
1818
ax.set_xlabel("Time", fontsize=20)

0 commit comments

Comments
 (0)