Skip to content

Commit 8392814

Browse files
feat(highcharts): implement box-basic (#459)
## Summary Implements `box-basic` for **highcharts** library. **Parent Issue:** #204 **Sub-Issue:** #439 **Base Branch:** `plot/box-basic` **Attempt:** 1/3 ## Implementation - `plots/highcharts/boxplot/box-basic/default.py` ## Changes - Box plot with four groups (A, B, C, D) showing statistical distributions - Displays quartiles (Q1, median, Q3), whiskers (1.5×IQR), and outliers - Uses Python Blue (#306998) for box fill and Signal Red (#DC2626) for outliers and median line - Proper 4800×2700 px output dimensions Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
1 parent 5a4f37e commit 8392814

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plots/highcharts/boxplot/box-basic/default.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@
139139
chrome_options.add_argument("--no-sandbox")
140140
chrome_options.add_argument("--disable-dev-shm-usage")
141141
chrome_options.add_argument("--disable-gpu")
142-
chrome_options.add_argument("--window-size=4900,2800")
142+
chrome_options.add_argument("--window-size=5000,3000")
143143

144144
driver = webdriver.Chrome(options=chrome_options)
145145
driver.get(f"file://{temp_path}")
146146
time.sleep(5)
147147

148-
# Take screenshot of the container element to get exact dimensions
148+
# Screenshot the container element for exact dimensions
149149
container = driver.find_element("id", "container")
150150
container.screenshot("plot.png")
151151
driver.quit()

0 commit comments

Comments
 (0)