You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2020/10/23 09:42:50 UTC

[incubator-echarts] branch next updated (3716981 -> 63d0909)

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

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


    from 3716981  fix(dataZoom): optimize alignment between handles.
     add 9ec0aaa  feat(decal): decal for basic charts
     add 0ab07f0  Merge branch 'next' into feat-decal
     add 35a127e  Merge branch 'next' into feat-decal
     add 64db4f5  Merge branch 'next' into feat-decal
     add e1fcc3d  feat(decal): move decal logic to zrender
     add bed5d49  feat(decal): rect shape decal
     add 4e3becc  feat(decal): support other symbols
     add 6c5f178  style(decal): clean up
     add e5e22d0  feat(decal): decal as palette
     add 2e45e34  refactor(aria): move old aria option under label
     add 77575f9  feat(decal): decal palette
     add 69e047d  fix(decal): update decal
     add deb4d9a  feat(decal): use LRU as decal cache
     add b3da514  feat(decal): support dpr
     add 309c6b9  test(decal): update test
     add 14d6023  test(decal): update test
     add d011ce0  chore: merge
     add 97f2546  chore: fix import src
     add 13e52ad  feat(decal): update default aria settings
     add 0a44d48  fix(aria): use preprocessor
     add eb1f2fb  feat(decal): area and sankey
     add d884533  fix(decal): fix sankey and treemap
     add 2384114  chore: merge
     add a951d44  fix(decal): sankey, treemap, sunburst, radar
     add 49bbc70  feat(decal): provide pattern with svg element if renderer is svg.
     add a5fb2fd  fix(decal): paint decal to canvas for all renderers besides svg
     add 627b17e  feat(decal): support legend icon decal
     add 421f54e  fix: disable decal on symbol
     add b915e4c  Merge branch 'feat-decal' of github.com:apache/incubator-echarts into feat-decal
     add 13993e6  fix(decal): visual decal should be set even with itemVisual
     add 90a19af  fix(type): enhance types in aria
     add f6bcae8  Merge branch 'feat-decal' of github.com:apache/incubator-echarts into feat-decal
     add b38c387  fix(decal): fix decal not work on map
     add c80aadb  fix(decal): remove offset, fix pie legend
     add aa06063  refactor(decal): move Decal definition to echarts
     add 66035d3  test(decal): remove offset in test case
     add 4df0f4a  fix(decal): fix types
     add 514464a  fix(decal): fix import
     new 63d0909  Merge pull request #13304 from apache/feat-decal

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/chart/helper/Symbol.ts                         |   2 +
 src/chart/helper/enableAriaDecalForTree.ts         |  22 ++
 src/chart/helper/pieHelper.ts                      |   2 +-
 src/chart/line/LineView.ts                         |   3 +-
 src/chart/radar/RadarView.ts                       |   3 +-
 src/chart/sankey/SankeySeries.ts                   |  12 +
 src/chart/sankey/SankeyView.ts                     |   3 +
 src/chart/sankey/sankeyVisual.ts                   |   2 +-
 src/chart/sunburst/SunburstPiece.ts                |  19 +-
 src/chart/sunburst/SunburstSeries.ts               |   5 +
 src/chart/sunburst/SunburstView.ts                 |  12 +-
 src/chart/treemap/TreemapSeries.ts                 |  27 +-
 src/chart/treemap/TreemapView.ts                   |   7 +-
 src/component/aria.ts                              |  73 ++++
 .../candlestick => component/aria}/preprocessor.ts |  17 +-
 src/component/helper/MapDraw.ts                    |   5 +
 src/component/legend/LegendView.ts                 |  14 +-
 src/coord/parallel/AxisModel.ts                    |   3 +-
 src/data/List.ts                                   |  15 +-
 src/echarts.all.ts                                 |   6 +
 src/echarts.common.ts                              |   1 +
 src/echarts.simple.ts                              |   1 +
 src/echarts.ts                                     |  15 +-
 src/model/Global.ts                                |   6 +-
 src/model/Series.ts                                |  25 +-
 src/model/globalDefault.ts                         |  37 ++
 src/model/mixin/areaStyle.ts                       |   3 +-
 src/model/mixin/colorPalette.ts                    |  96 -----
 src/model/mixin/itemStyle.ts                       |   4 +-
 src/model/mixin/lineStyle.ts                       |   3 +-
 src/model/mixin/makeStyleMapper.ts                 |   4 +-
 src/model/mixin/palette.ts                         | 143 ++++++++
 src/util/decal.ts                                  | 355 +++++++++++++++++++
 src/util/number.ts                                 |  29 ++
 src/util/types.ts                                  |  50 ++-
 src/visual/VisualMapping.ts                        |  10 +
 src/visual/aria.ts                                 | 310 +++++++++++------
 src/visual/decal.ts                                |  47 +++
 src/visual/style.ts                                |  21 +-
 test/decal.html                                    | 387 +++++++++++++++++++++
 40 files changed, 1535 insertions(+), 264 deletions(-)
 create mode 100644 src/chart/helper/enableAriaDecalForTree.ts
 create mode 100644 src/component/aria.ts
 copy src/{chart/candlestick => component/aria}/preprocessor.ts (66%)
 delete mode 100644 src/model/mixin/colorPalette.ts
 create mode 100644 src/model/mixin/palette.ts
 create mode 100644 src/util/decal.ts
 create mode 100644 src/visual/decal.ts
 create mode 100644 test/decal.html


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


[incubator-echarts] 01/01: Merge pull request #13304 from apache/feat-decal

Posted by sh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch next
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git

commit 63d0909f4d6e0182bae79d14d63f32ccec5f0fb1
Merge: 3716981 514464a
Author: Yi Shen <bm...@gmail.com>
AuthorDate: Fri Oct 23 17:42:41 2020 +0800

    Merge pull request #13304 from apache/feat-decal
    
    [5.0] [FEATURE]  decal

 src/chart/helper/Symbol.ts                         |   2 +
 src/chart/helper/enableAriaDecalForTree.ts         |  22 ++
 src/chart/helper/pieHelper.ts                      |   2 +-
 src/chart/line/LineView.ts                         |   3 +-
 src/chart/radar/RadarView.ts                       |   3 +-
 src/chart/sankey/SankeySeries.ts                   |  12 +
 src/chart/sankey/SankeyView.ts                     |   3 +
 src/chart/sankey/sankeyVisual.ts                   |   2 +-
 src/chart/sunburst/SunburstPiece.ts                |  19 +-
 src/chart/sunburst/SunburstSeries.ts               |   5 +
 src/chart/sunburst/SunburstView.ts                 |  12 +-
 src/chart/treemap/TreemapSeries.ts                 |  27 +-
 src/chart/treemap/TreemapView.ts                   |   7 +-
 src/component/aria.ts                              |  73 ++++
 .../aria/preprocessor.ts}                          |  35 +-
 src/component/helper/MapDraw.ts                    |   5 +
 src/component/legend/LegendView.ts                 |  14 +-
 src/coord/parallel/AxisModel.ts                    |   3 +-
 src/data/List.ts                                   |  15 +-
 src/echarts.all.ts                                 |   6 +
 src/echarts.common.ts                              |   1 +
 src/echarts.simple.ts                              |   1 +
 src/echarts.ts                                     |  15 +-
 src/model/Global.ts                                |   6 +-
 src/model/Series.ts                                |  25 +-
 src/model/globalDefault.ts                         |  37 ++
 src/model/mixin/areaStyle.ts                       |   3 +-
 src/model/mixin/colorPalette.ts                    |  96 -----
 src/model/mixin/itemStyle.ts                       |   4 +-
 src/model/mixin/lineStyle.ts                       |   3 +-
 src/model/mixin/makeStyleMapper.ts                 |   4 +-
 src/model/mixin/palette.ts                         | 143 ++++++++
 src/util/decal.ts                                  | 355 +++++++++++++++++++
 src/util/number.ts                                 |  29 ++
 src/util/types.ts                                  |  50 ++-
 src/visual/VisualMapping.ts                        |  10 +
 src/visual/aria.ts                                 | 310 +++++++++++------
 src/visual/decal.ts                                |  47 +++
 src/visual/style.ts                                |  21 +-
 test/decal.html                                    | 387 +++++++++++++++++++++
 40 files changed, 1541 insertions(+), 276 deletions(-)


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