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 2021/03/31 07:24:23 UTC

[echarts] branch fix-legend updated (04ce156 -> 74eec89)

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

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


    from 04ce156  fix(legend): fix bugs of legend style
     add 98e87ee  fix(legend): fix line and radar
     add b083c1e  fix: empty symbol lineWidth 2
     add 64f2cb6  fix(legend): fix radar legend
     add a04213d  perf(tooltip): optimize the performance of tooltip.
     add 5751a30  Merge branch 'master' of https://github.com/apache/echarts into perf-tooltip
     add 15fb2a3  Merge branch 'master' of https://github.com/apache/echarts into perf-tooltip
     add 7fe6d4d  fix(tooltip): rename `ieTransform3dSupported` to be `transformSupported`.
     add ce4d237  perf(tooltip): reduce strings.
     add ae6b635  fix(tooltip): fix tooltip position may be incorrect.
     add 6904fc6  fix(tooltip): fix tooltip position issue when using transform.
     add 242c403  fix(tooltip): explicitly use import type.
     add 73a9f6e  fix(tooltip): fix code format and check if dom is supported before `testStyle`.
     add e88b99f  fix(tooltip): fix potential NPE in `toCSSVendorPrefix` function.
     add 07b074a  Merge pull request #14246 from apache/perf-tooltip
     add e3974dd  fix(custom): fix series label on custom series not working properly. close #14092
     add f3471f0  Merge pull request #14254 from Nick22nd/fix-14092
     add c3a4982  fix: remove legacy usage of transform
     add 28f01ef  Merge pull request #14357 from apache/fix-legacy-code
     add 01e2da5  1) fix: markLine `symbolOffset` doesn't work bug - Resolves #9325 - Resolves #14106 - Resolves #4771 2) feat: `markLine.symbolRotate` can be an array to specify symbol rotation at the two endpoints. - Related #12736, #12392 3) feat: add `markLine.symbolKeepAspect` and fix `symbolKeepAspect` doesn't work bug. 4) feat: `symbolOffset` can be a callback function, close #12495.
     add 93b157c  fix(markLine): remove unexpected dev code.
     add 1c1632d  fix(lint): tweak code format.
     add d5b3f71  fix(symbol): fix `symbolOffset` bug in `effectSymbol`.
     add a328e65  fix(markLine): `0` should be considered as a valid value, so use `retrieve2` instead of `||`.
     add 1fb3d89  test(markLine): add test cases for markLine symbolRotate & symbolOffset.
     add a39c4a1  Merge pull request #14375 from apache/fix/markLine-symbol
     add 1e86a5c  test(lines): add extraneous lines test case
     add 41551fa  fix: discard removed line data points
     add d80deef  Merge pull request #13638 from areo/fix-10228
     add d010376  test(line): add test case for line remove animation.
     add 6e8515a  Merge pull request #14552 from apache/add-test-for-line-extraneous
     add 1fecb51  feat(animation): add animaiton configuration in resize
     add ba3e89b  Merge pull request #14553 from apache/resize-animation
     add f28bd48  fix(Calendar): fix day label drifting. close #11508
     add 5231bbd  improve: set margin as minimal one
     add a7fe5a4  Merge pull request #13902 from Nick22nd/fix-11508
     add 74eec89  Merge branch 'master' into fix-legend

No new revisions were added by this update.

Summary of changes:
 src/chart/helper/EffectSymbol.ts            |  13 +-
 src/chart/helper/Line.ts                    |  33 +++-
 src/chart/helper/Symbol.ts                  |  17 +-
 src/chart/helper/SymbolDraw.ts              |   5 -
 src/chart/line/install.ts                   |  12 +-
 src/chart/line/lineAnimationDiff.ts         |  27 +--
 src/chart/radar/RadarSeries.ts              |   3 +-
 src/component/calendar/CalendarView.ts      |   2 +-
 src/component/legend/LegendView.ts          |  46 +++--
 src/component/marker/MarkLineModel.ts       |   7 +-
 src/component/marker/MarkLineView.ts        |  24 ++-
 src/component/radar/install.ts              |   4 +-
 src/component/tooltip/TooltipHTMLContent.ts | 175 +++++++++++-------
 src/component/tooltip/TooltipView.ts        |   7 +-
 src/component/tooltip/helper.ts             |  44 +++++
 src/core/echarts.ts                         |  35 ++--
 src/data/List.ts                            |   1 +
 src/echarts.ts                              |   2 +-
 src/util/styleCompat.ts                     |   2 +-
 src/util/symbol.ts                          |   5 +
 src/util/types.ts                           |   4 +-
 src/visual/commonVisualTypes.ts             |   8 +-
 src/visual/style.ts                         |   8 +-
 src/visual/symbol.ts                        |  23 ++-
 test/legend-style.html                      |   2 +-
 test/line-extraneous.html                   | 274 ++++++++++++++++++++++++++++
 test/markLine-symbolRotate.html             |   8 +-
 test/radar.html                             |  22 ++-
 test/resize-animation.html                  | 117 ++++++++++++
 test/runTest/actions/__meta__.json          |   2 +
 test/runTest/actions/line-extraneous.json   |   1 +
 test/runTest/actions/resize-animation.json  |   1 +
 test/symbol3.html                           |  46 ++++-
 33 files changed, 788 insertions(+), 192 deletions(-)
 create mode 100644 test/line-extraneous.html
 create mode 100644 test/resize-animation.html
 create mode 100644 test/runTest/actions/line-extraneous.json
 create mode 100644 test/runTest/actions/resize-animation.json

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