This is an automated email from the ASF dual-hosted git repository.
ovilia pushed a change to branch feat-theme
in repository https://gitbox.apache.org/repos/asf/echarts.git
from 88d658aa8 fix(theme): update v5 theme
add e7867e15a chore(test): support mark diff as expected
add d4ab7dcc2 feat(custom): support disableTooltip for custom series
add b1319ce54 Merge branch 'v6' into feat-disableTooltip
add ed9b5c5bc fix(custom): rename to tooltipDisabled and add more cases
add c350fc8a7 fix: fix disableTooltip
add d2d1fbd7b Merge pull request #20447 from apache/feat-disableTooltip
add ecfe5832d feat(scatter): support jitter for scatters #18432
add 1ccceac62 feat(jitter): support overlapping API
add ae6f8bd77 test(jitter): support overlapping API
add ef777eb4e feat(jitter): support beeswarm-like jitter
add b58178999 feat(jitter): support beeswarm-like jitter
add 52f5ef46b feat(jitter): fix lint and unit test
add b95d3791b refactor(jitter): fix import type
add e9fdf5fe0 test: add violin demo
add 02060ff95 Merge branch 'v6' into feat-scatter
add d5df6aad8 fix(scatter): clamp jitter within bandwidth
add e99f581a3 refactor(jitter): improve code efficiency according to
#19941#discussion_r1842014348
add 425a38ac9 refactor(jitter): put jitter information inside axis instead
of inner
add c317bfe5c refactor(jitter): use layout instead of SymbolDraw
add 216e288c1 chore: merge
add 2f8fcc2d9 chore: merge
add 623303702 refactor(jitter): register jitter on need
add 0bda4930d refactor(jitter): remove JitterStorable
add 85482d99e Merge pull request #19941 from apache/feat-scatter
add bd4d96577 Merge branch 'v6' into feat-theme
add c4481090e test(theme): fix test cases of v6
No new revisions were added by this update.
Summary of changes:
src/chart/bar/BaseBarSeries.ts | 9 +-
src/chart/custom/CustomSeries.ts | 2 +
src/chart/custom/CustomView.ts | 3 +
src/chart/scatter/install.ts | 8 +-
src/chart/scatter/jitterLayout.ts | 50 ++
src/component/brush/BrushModel.ts | 14 +-
src/component/dataZoom/SliderZoomModel.ts | 5 +-
src/component/timeline/SliderTimelineModel.ts | 3 +-
src/component/tooltip/TooltipView.ts | 14 +-
src/coord/axisCommonTypes.ts | 4 +
src/coord/axisDefault.ts | 3 +
src/coord/geo/GeoModel.ts | 13 +-
src/coord/single/AxisModel.ts | 6 +-
src/echarts.all.ts | 5 +-
src/export/features.ts | 2 +
src/layout/barGrid.ts | 5 +-
src/model/Global.ts | 4 +-
src/util/jitter.ts | 185 +++++++
src/util/types.ts | 4 +
src/visual/visualDefault.ts | 2 +-
test/areaLineUpdate.html | 4 +-
test/bar-markArea.html | 1 +
test/check-build.html | 5 +-
test/circle-packing-with-d3.compat.html | 7 +-
test/circle-packing-with-d3.html | 9 +-
test/custom-feature.html | 177 ++++++-
test/custom-shape-morphing2.html | 6 +-
test/custom-shape-morphing3.html | 1 -
test/custom-transition-ecStat.html | 1 -
test/dataZoom-action.html | 18 +-
test/ie-svg-export.html | 9 +-
test/ios13-z-bug.html | 6 +-
test/lib/config.js | 4 +-
test/lines-ny.html | 7 +-
test/runTest/client/client.css | 117 ++++-
test/runTest/client/client.js | 437 +++++++++++++++-
test/runTest/client/index.html | 91 +++-
test/runTest/genReport.js | 265 +++++++++-
test/runTest/marks/axis-break-2.json | 10 +
test/runTest/marks/axis-break-3.json | 10 +
test/runTest/marks/axis-break-4.json | 10 +
test/runTest/marks/axis-break.json | 10 +
test/runTest/marks/brush2.json | 10 +
test/runTest/marks/dataSelect.json | 10 +
test/runTest/marks/decal.json | 10 +
test/runTest/marks/emphasis-disabled.json | 10 +
test/runTest/marks/force-edge-ignoreLayout.json | 10 +
test/runTest/marks/gauge.json | 10 +
test/runTest/marks/graph-edge-highlight.json | 10 +
test/runTest/marks/graph-grid.json | 10 +
test/runTest/marks/graph-thumbnail.json | 10 +
test/runTest/marks/graph.json | 10 +
test/runTest/marks/hoverFocus.json | 10 +
test/runTest/marks/loading.json | 10 +
test/runTest/marks/sankey-labelValue.json | 10 +
test/runTest/marks/sunburst-book.json | 10 +
test/runTest/marks/sunburst-emphasis-focus.json | 10 +
test/runTest/marks/sunburst-label-align.json | 10 +
test/runTest/marks/sunburst-label-rotate.json | 10 +
test/runTest/marks/sunburst-label.json | 10 +
test/runTest/marks/sunburst-simple.json | 10 +
test/runTest/marks/theme-list.json | 10 +
test/runTest/marks/theme.json | 10 +
test/runTest/marks/universalTransition3.json | 10 +
test/runTest/server.js | 120 ++++-
test/runTest/store.js | 182 ++++++-
test/runTest/util.js | 8 +
test/scatter-jitter.html | 633 ++++++++++++++++++++++++
test/timeScale-value-bandwidth.html | 188 +++++++
test/violin.html | 208 ++++++++
theme/v5.js | 39 +-
71 files changed, 3022 insertions(+), 122 deletions(-)
create mode 100644 src/chart/scatter/jitterLayout.ts
create mode 100644 src/util/jitter.ts
create mode 100644 test/runTest/marks/axis-break-2.json
create mode 100644 test/runTest/marks/axis-break-3.json
create mode 100644 test/runTest/marks/axis-break-4.json
create mode 100644 test/runTest/marks/axis-break.json
create mode 100644 test/runTest/marks/brush2.json
create mode 100644 test/runTest/marks/dataSelect.json
create mode 100644 test/runTest/marks/decal.json
create mode 100644 test/runTest/marks/emphasis-disabled.json
create mode 100644 test/runTest/marks/force-edge-ignoreLayout.json
create mode 100644 test/runTest/marks/gauge.json
create mode 100644 test/runTest/marks/graph-edge-highlight.json
create mode 100644 test/runTest/marks/graph-grid.json
create mode 100644 test/runTest/marks/graph-thumbnail.json
create mode 100644 test/runTest/marks/graph.json
create mode 100644 test/runTest/marks/hoverFocus.json
create mode 100644 test/runTest/marks/loading.json
create mode 100644 test/runTest/marks/sankey-labelValue.json
create mode 100644 test/runTest/marks/sunburst-book.json
create mode 100644 test/runTest/marks/sunburst-emphasis-focus.json
create mode 100644 test/runTest/marks/sunburst-label-align.json
create mode 100644 test/runTest/marks/sunburst-label-rotate.json
create mode 100644 test/runTest/marks/sunburst-label.json
create mode 100644 test/runTest/marks/sunburst-simple.json
create mode 100644 test/runTest/marks/theme-list.json
create mode 100644 test/runTest/marks/theme.json
create mode 100644 test/runTest/marks/universalTransition3.json
create mode 100644 test/scatter-jitter.html
create mode 100644 test/timeScale-value-bandwidth.html
create mode 100644 test/violin.html
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]