You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by su...@apache.org on 2020/10/21 13:17:21 UTC

[incubator-echarts] branch custom-morph2 updated (d36f49d -> c1bfc95)

This is an automated email from the ASF dual-hosted git repository.

sushuang pushed a change to branch custom-morph2
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git.


    from d36f49d  fix: do not use Object.freeze(). data-transform only expose "clone" API.
     add 7439a81  tweak type
     add dcdafe2  fix: fix morphing combine separate bad case.
     add 621e796  chrone: add hint for wrong config of media query.
     add 9d0453a  fix: fix combine/separate.
     add 97b1473  test(dirty-rect): support dirty rect in test
     add b0d9456  refactor(dirty-rect): reuse window logic
     add c03bbbb  refactor(dirty-rect): merge conditions
     add d5c8ce9  Merge branch 'next' into dirty-rect
     add 8a17180  Merge pull request #13170 from apache/dirty-rect
     add 485bcf7  1. add splitLine.distance & axisTick.distance 2. add anchor 3. support svg of pointer 4. add progress
     add affa98c  Merge branch 'next' into design-13216
     add 565fa0d  resize the svg pointer and progress
     add dc988d1  fix the resized bug & support the titleDetailItem
     add 5027432  support data[i].title/data[i].detail & add test
     add 59d00d3  fix order of render configuration of gauge & add test of clock
     add 2033777  delete the useless code
     add 09c42f1  fix: gauge.axisLine can not be circle
     add d283b9f  fix:the progress can draw when current value is greater than max value
     add 2d6e782  modify the test case of clock
     add c92c8f5  add clip to progress
     add 87c1365  adjust order of rendering anchor & pointer
     add 622c033  1. create path when data updating 2. add showAbove/icon/offsetCenter to anchor 3. adjust the verticalAlign of label
     add 0ce5122  1.change anchorSize to size 2.pointer.icon support img/circle/rect/... 3.delete progress.slent 4.delete the code of removing in renderPointer 5.fix code style
     add 3729431  fix:the logic of code in data.update
     add 09d6750  Merge pull request #13416 from apache/design-13216
     add 61c25fe  Fix(legend.scroll): scroll animation start position was incorrect
     add 26aed81  fix: fix the bug brought by the refactor that follow the change of  "position => x/y".
     add 70f76b4  fix: fix the bug brought by the refactor that follow the change of  "position => x/y".
     add eadd081  Merge pull request #13443 from susiwen8/legend-scroll
     add c358735  refact(label): provide general method for value animation
     add f57a88f  feat(gauge): add value animation in gauge
     add f4e372e  fix(tooltip): hide tooltip when mouse leaves the chart(fix apache#12778).
     add 3de41dc  Merge pull request #13382 from plainheart/fix-12778
     add 7da95db  fix(animation): disable additive animation since it's still having issues.
     add 5e3ed2b  optimize default position of grid to avoid overlap with dataZoom
     add f543734  fix: optimize symbol animation
     add 3bd829d  fix(line): fix symbol may disappear if switched too frequently
     add 812523c  fix(line): fix animation wrong due to typo
     add 8db1c20  fix(step): fix middle step line wrong
     add bee677e  fix(grid): revert optimize of grid layout adjust based on containLabel
     add 1f04ff6  Merge branch 'next' into custom-morph2
     add c1bfc95  ts: tweak type error.

No new revisions were added by this update.

Summary of changes:
 src/chart/bar/BarView.ts                           |  30 +-
 src/chart/custom.ts                                | 311 +++++++----
 src/chart/gauge/GaugeSeries.ts                     | 146 ++++--
 src/chart/gauge/GaugeView.ts                       | 454 ++++++++++------
 src/chart/helper/Symbol.ts                         |  31 +-
 src/chart/helper/labelHelper.ts                    |   2 +-
 src/chart/line/LineSeries.ts                       |   2 +-
 src/chart/line/LineView.ts                         |  14 +-
 src/component/legend/ScrollableLegendView.ts       |   8 +-
 src/component/tooltip/TooltipHTMLContent.ts        |   4 +-
 src/coord/cartesian/Grid.ts                        |   7 +-
 src/coord/cartesian/GridModel.ts                   |   2 +-
 src/data/DataDiffer.ts                             |   6 +-
 src/data/helper/transform.ts                       |   8 +-
 src/echarts.ts                                     |  22 +-
 src/label/LabelManager.ts                          |  26 +-
 src/label/labelStyle.ts                            |  87 +++-
 src/model/OptionManager.ts                         |  37 +-
 src/model/globalDefault.ts                         |   3 +-
 src/theme/dark.ts                                  |  13 +-
 src/util/graphic.ts                                |  88 +---
 src/util/model.ts                                  |   4 +
 src/util/types.ts                                  |   2 +-
 test/custom-children-remove.html                   |   2 +-
 test/custom-shape-morphing3.html                   |  24 +-
 test/custom.html                                   |   4 +-
 test/gauge-distance.html                           | 570 ++++++++++++++++++++
 test/gauge-group-title-detail.html                 | 574 +++++++++++++++++++++
 test/gauge-pointer.html                            | 556 ++++++++++++++++++++
 test/gauge-progress.html                           | 357 +++++++++++++
 test/gauge-simple.html                             |   2 +-
 test/gauge.html                                    | 141 ++++-
 test/legend-scroll2plain.html                      |  84 ++-
 test/lib/caseFrame.css                             |   7 +-
 test/lib/caseFrame.js                              |  32 +-
 test/lib/config.js                                 |   3 +
 test/runTest/actions/gauge-distance.json           |   1 +
 test/runTest/actions/gauge-group-title-detail.json |   1 +
 test/runTest/actions/gauge-pointer.json            |   1 +
 test/runTest/actions/gauge-progress.json           |   1 +
 test/runTest/actions/gauge.json                    |   1 +
 41 files changed, 3182 insertions(+), 486 deletions(-)
 create mode 100644 test/gauge-distance.html
 create mode 100644 test/gauge-group-title-detail.html
 create mode 100644 test/gauge-pointer.html
 create mode 100644 test/gauge-progress.html
 create mode 100644 test/runTest/actions/gauge-distance.json
 create mode 100644 test/runTest/actions/gauge-group-title-detail.json
 create mode 100644 test/runTest/actions/gauge-pointer.json
 create mode 100644 test/runTest/actions/gauge-progress.json
 create mode 100644 test/runTest/actions/gauge.json


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org