You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by ov...@apache.org on 2020/10/22 07:46:20 UTC

[incubator-echarts] branch feat-decal updated (d884533 -> 2384114)

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

ovilia pushed a change to branch feat-decal
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git.


    from d884533  fix(decal): fix sankey and treemap
     add 2edf20f  add: Japanese i18n file
     add 99a48d4  update(i18n): add time translation
     add b7b941a  fix: fix task clear when setOption in the second time and reuse series.
     add 8233187  feature: (1) Support custom series morphing with split/merge effect. (2) Add API: setOption(option, { transition: { ... } }) to indicate the transition relationship. (3) Fix underlying schedule framework buggy disopose when setOption at the second time and change data.
     add 58397cd  fix: enhance transition morphing API.
     add bc1f8a0  enhance: [data transform] (1) Clarify the rule of when need to return the dimension. (2) Clarify the API name and behavior of data transform. (3) Try to freeze the raw data exposed to data transform.
     add 82f62ca  test: add experimental transform.
     add 0d0ecbf  feature: custom series support transition: ['shape', 'style', 'extra']
     add 24a22eb  enhance: tweak transform name.
     add 9b1afaf  Merge branch 'next' into custom-morph2
     add d8e4049  feature: [custom series] add renderItem api ordinalRawValue for retrieving raw ordinal value when ordinal dimensions is on axis.
     add 48053ce  Merge branch 'next' into custom-morph2
     add 1f71fad  Merge branch 'next' into custom-morph2
     add 3ad08d4  fix: tweak list id name generation rule (avoid some potential flaw) and add test cases.
     add 9a3a1cc  feature: enhance morphing in custom series.
     add 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 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.
     add 2f23e9c  Merge pull request #13468 from apache/custom-morph2
     add 5136ad6  Merge remote-tracking branch 'upstream/next' into i18n-japanese
     add 506b460  chore(i18n): move Japanese i18n file to i18n directory
     add 47f95a8  Merge pull request #13470 from swsoyee/i18n-japanese
     add 21638cd  fix(gauge): disable value animation by default because of precision issue in formatter.
     add 8b79d3c  test: update ecstat dep.
     add 2fcb411  feat(bar): add sampling support in bar. some code cleanup
     add 7252403  Merge branch 'next' of github.com:apache/incubator-echarts into next
     add 3b5c8b2  test: add more language cases.
     add 2384114  chore: merge

No new revisions were added by this update.

Summary of changes:
 src/chart/bar.ts                           |   7 +
 src/chart/bar/BarSeries.ts                 |   5 +-
 src/chart/bar/BarView.ts                   |   8 +-
 src/chart/boxplot/boxplotTransform.ts      |  17 +-
 src/chart/custom.ts                        | 966 +++++++++++++++++++++++------
 src/chart/gauge/GaugeSeries.ts             |   4 +-
 src/chart/gauge/GaugeView.ts               |   3 +-
 src/chart/helper/Symbol.ts                 |  31 +-
 src/chart/line/LineSeries.ts               |   2 +-
 src/chart/line/LineView.ts                 |  14 +-
 src/component/transform/filterTransform.ts |  18 +-
 src/component/transform/sortTransform.ts   |  48 +-
 src/coord/cartesian/Grid.ts                |   7 +-
 src/coord/cartesian/GridModel.ts           |   2 +-
 src/coord/scaleRawExtentInfo.ts            |  10 +-
 src/data/DataDiffer.ts                     | 239 +++++--
 src/data/List.ts                           | 231 +++----
 src/data/Source.ts                         |  52 +-
 src/data/helper/dataProvider.ts            |  19 +-
 src/data/helper/sourceHelper.ts            |  29 +-
 src/data/helper/sourceManager.ts           |  13 +-
 src/data/helper/transform.ts               | 216 +++++--
 src/echarts.ts                             |  85 ++-
 src/i18n/langJA.ts                         | 142 +++++
 src/model/Global.ts                        |   8 +-
 src/model/OptionManager.ts                 |  37 +-
 src/model/Series.ts                        |  19 +-
 src/model/globalDefault.ts                 |   1 -
 src/stream/Scheduler.ts                    |  79 ++-
 src/stream/task.ts                         |  57 +-
 src/util/graphic.ts                        |  22 +-
 src/util/model.ts                          |  22 +-
 src/util/types.ts                          |  39 +-
 test/circle-packing-with-d3.compat.html    |   1 +
 test/circle-packing-with-d3.html           |   1 +
 test/clip-large1.html                      |   1 +
 test/custom-shape-morphing2.html           | 647 +++++++++++++++++++
 test/custom-shape-morphing3.html           | 428 +++++++++++++
 test/data-transform-ecStat.html            |  19 +-
 test/gauge-simple.html                     |  98 ++-
 test/lang.html                             |  60 +-
 test/lib/config.js                         |   4 +-
 test/lib/ecStat.min.js                     |   1 +
 test/lib/ecStatTransform.js                |  48 --
 test/lib/myTransform/aggregate.js          | 174 ++++++
 test/lib/myTransform/id.js                 |  88 +++
 test/lib/transitionPlayer.js               | 256 ++++++++
 test/ut/spec/data/List.test.ts             | 371 ++++++++++-
 48 files changed, 3941 insertions(+), 708 deletions(-)
 create mode 100644 src/i18n/langJA.ts
 create mode 100644 test/custom-shape-morphing2.html
 create mode 100644 test/custom-shape-morphing3.html
 create mode 100644 test/lib/ecStat.min.js
 delete mode 100644 test/lib/ecStatTransform.js
 create mode 100644 test/lib/myTransform/aggregate.js
 create mode 100644 test/lib/myTransform/id.js
 create mode 100644 test/lib/transitionPlayer.js


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