This is an automated email from the ASF dual-hosted git repository. sushuang pushed a commit to branch PR/plainheart_fix/alignTicks-precision in repository https://gitbox.apache.org/repos/asf/echarts.git
commit c4a38230a99d2765a7a61be885798fab48b2c3a7 Merge: 1f74fd749 f1cca2618 Author: 100pah <[email protected]> AuthorDate: Tue Feb 17 19:53:51 2026 +0800 Merge branch 'release' into pr/plainheart_fix/alignTicks-precision # Conflicts: # src/chart/bar/BarView.ts # src/chart/treemap/treemapLayout.ts .gitignore | 3 + build/pre-publish.js | 88 +++-- build/template/charts.d.ts | 4 +- build/template/components.d.ts | 4 +- build/template/core.d.ts | 4 +- build/template/features.d.ts | 4 +- build/template/option.d.ts | 4 +- build/template/renderers.d.ts | 4 +- build/template/ssr/client/index.d.ts | 4 +- build/testDts.js | 119 ++++++- index.d.ts | 13 +- package-lock.json | 93 ++--- package.README.md | 78 ++++- package.json | 19 +- src/chart/scatter/install.ts | 2 +- src/chart/scatter/jitterLayout.ts | 104 +++--- src/chart/treemap/TreemapSeries.ts | 9 +- src/chart/treemap/TreemapView.ts | 53 +-- src/chart/treemap/treemapLayout.ts | 79 +++-- src/component/marker/MarkAreaView.ts | 4 +- src/component/marker/MarkLineView.ts | 9 +- src/component/marker/MarkPointView.ts | 9 +- src/component/matrix/MatrixView.ts | 33 +- src/component/tooltip/seriesFormatTooltip.ts | 2 +- src/component/tooltip/tooltipMarkup.ts | 4 +- src/coord/axisTickLabelBuilder.ts | 4 +- src/coord/matrix/MatrixModel.ts | 2 + src/data/SeriesData.ts | 18 +- src/data/SeriesDimensionDefine.ts | 16 + src/data/helper/createDimensions.ts | 6 +- src/export/all.ts | 2 + src/util/jitter.ts | 14 +- test/bar-datazoom-filtermode-none-time-axis.html | 419 +++++++++++++++++++++++ test/marker-dataset-encode.html | 283 +++++++++++++++ test/matrix.html | 96 ++++++ test/runTest/actions/__meta__.json | 2 + test/runTest/actions/scatter-jitter.json | 1 + test/scatter-jitter.html | 185 ++++++++++ test/series-omitUnusedDimensions.html | 4 +- test/tooltip-valueFormatter.html | 26 +- test/types/cjs/main.ts | 44 +++ test/types/cjs/package.json | 3 + test/types/{ => esm}/basic.ts | 2 +- test/types/{ => esm}/event.ts | 4 +- test/types/{ => esm}/importPartial.ts | 18 +- test/types/no-module/main.ts | 24 ++ test/types/package.json | 8 + test/ut/spec/component/matrix/event.test.ts | 136 ++++++++ 48 files changed, 1773 insertions(+), 293 deletions(-) diff --cc src/chart/treemap/treemapLayout.ts index c64def55c,5956a3ca7..0862bf8aa --- a/src/chart/treemap/treemapLayout.ts +++ b/src/chart/treemap/treemapLayout.ts @@@ -38,7 -38,8 +38,9 @@@ import ExtensionAPI from '../../core/Ex import { TreeNode } from '../../data/Tree'; import Model from '../../model/Model'; import { TreemapRenderPayload, TreemapMovePayload, TreemapZoomToNodePayload } from './treemapAction'; +import { initExtentForUnion } from '../../util/model'; + import { RoamOptionMixin } from '../../util/types'; + import { clampByZoomLimit } from '../../component/helper/roamHelper'; const mathMax = Math.max; const mathMin = Math.min; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
