feat(bokeh): implement area-basic#295
Merged
github-actions[bot] merged 3 commits intoplot/area-basicfrom Dec 7, 2025
Merged
Conversation
Implements a basic area chart for bokeh library following KISS style: - Uses varea method with fill_alpha=0.7 - Monthly sales data from spec - Categorical x-axis with month labels - Line overlay for clearer boundary - 4800x2700px output size per style guide
Contributor
8 tasks
Add selenium>=4.15.0 and webdriver-manager>=4.0.0 to lib-bokeh extra. This is required for bokeh's export_png() function to work. Note: ci-plottest.yml also needs to setup Chrome for bokeh tests (requires manual update due to workflow permissions).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements
area-basicfor bokeh library.Parent Issue: #201
Sub-Issue: #215
Base Branch:
plot/area-basicAttempt: 2/3
Implementation
plots/bokeh/varea/area-basic/default.pyDetails
vareamethod for filled area chartlineoverlay for clearer boundaryDependencies
Added
selenium>=4.15.0andwebdriver-manager>=4.0.0tolib-bokehoptional dependency inpyproject.toml. This is required for bokeh'sexport_png()function.The CI workflow needs Chrome setup for bokeh tests (similar to highcharts). A maintainer needs to update
.github/workflows/ci-plottest.yml:Change line 69-71 from:
To:
This cannot be pushed from this workflow due to GitHub App workflow permissions.
Local Test Result
The implementation runs successfully locally with Chrome and produces a valid 4800x2700 PNG.