Document 1.1.1 release and new chart types#28
Merged
incandescentxxc merged 1 commit intoMay 18, 2026
Conversation
- Bump Maven/Gradle versions in quick-start (EN + zh-cn) to 1.1.1; also fixes a pre-existing version mismatch where the inline snippets disagreed. - Add Map, EffectScatter, Lines, PictorialBar to the sidebar under Chart APIs and Series APIs. Map goes into a new "Geo Coord Chart" group; the other three sit alongside Scatter/Bar in the Cartesian group. - Add skeleton chart-apis and series-apis pages for the four new chart types, following the existing Funnel/Scatter shape. - Add basic source snippets for each chart under _media, derived from the BasicXxxTest fixtures in the main repo so the code is known-good. HTML demo iframes are intentionally not included — those require rendering each chart and committing the output, which we can do in a follow-up. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
incandescentxxc
approved these changes
May 18, 2026
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
Updates the docs to cover the four new chart types shipped in 1.1.1 and brings the version snippets up to date.
Version bumps
quick-start.md: Maven/Gradle/Maven Central link snippets all unified at1.1.1. The page previously had a pre-existing version mismatch (1.0.7in the snippets,1.0.3in the Maven Central link).zh-cn/quick-start.md: same fix on the Chinese page (had1.0.3vs1.0.7between snippets).New chart docs
Added skeleton pages for the four chart types from PRs ECharts-Java/ECharts-Java#101–#104, following the existing Funnel/Scatter shape:
chart-apis/map.md+series-apis/map-series.md— new Geo Coord Chart sectionchart-apis/effect-scatter.md+series-apis/effect-scatter-series.md— Cartesian groupchart-apis/lines.md+series-apis/lines-series.md— Cartesian groupchart-apis/pictorial-bar.md+series-apis/pictorial-bar-series.md— Cartesian groupAlso created
chart-apis/geo-coord-chart.mdfor the new section landing page.Source snippets
Added
_media/<chart>/basic-<chart>-src.mdfor each new chart, sourced verbatim from theBasicXxxTestfixtures in the main repo so the code is known-good and stays in sync with the test suite.Sidebar
_sidebar.md.chart-apis/cartesian-coord-chart.md.Intentionally not included
dfsplaceholders for the Chart APIs / Series APIs sections, so I left it untouched rather than partially fill it in. Worth a dedicated PR.@JsFunctionfor tooltip/label callbacks). It doesn't fit chart-apis or series-apis; would slot into a new "Serializer" or "Advanced" section that doesn't exist yet.Test plan
docsify serve ., verify the sidebar shows the new entries and all linked pages load.