Skip to content

Commit 0c66666

Browse files
feat(highcharts): implement line-basic (#478)
## Summary Implements `line-basic` for **highcharts** library. **Parent Issue:** #205 **Sub-Issue:** #455 **Base Branch:** `plot/line-basic` **Attempt:** 1/3 ## Implementation - `plots/highcharts/line/line-basic/default.py` ## Changes - Fixed import path for LineSeries (from `highcharts_core.options.series.area`) - Set correct window size for 4800x2700 screenshot - Clean KISS-style implementation following plot-generator guidelines Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
1 parent 870ff67 commit 0c66666

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plots/highcharts/line/line-basic/default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
chrome_options.add_argument("--no-sandbox")
9393
chrome_options.add_argument("--disable-dev-shm-usage")
9494
chrome_options.add_argument("--disable-gpu")
95-
chrome_options.add_argument("--window-size=4900,2800")
95+
chrome_options.add_argument("--window-size=4800,2700")
9696

9797
driver = webdriver.Chrome(options=chrome_options)
9898
driver.get(f"file://{temp_path}")

0 commit comments

Comments
 (0)