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/07/20 04:01:58 UTC

[echarts] branch feat-colorBy updated (4b3db17 -> c6e9915)

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

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


    from 4b3db17  fix(colorBy): isColorBySeries method
     add edc4367  1) fix(tooltip): tooltip should show DOM content instead of the string [object HTMLSpanElement], resolves #15307.
     add 7e8884b  fix(tooltip): should clear the DOM content if user-specified content is null, resolves #14832.
     add 6bd27bf  Fix(polar): polar would throw error if no label
     add 80fa130  Fix: should not return directly
     add ccabde4  chore: bar label type enhance
     add cf26691  Merge pull request #15314 from susiwen8/polar-bar-label
     add ff0c8d3  feat(effectScatter): make ripple effect count configurable, resolves #15252.
     add 2efe31d  fix(effectScatter): recreate effect if count changed.
     add e339203  refactor(effectScatter): rename `count` to `number`.
     add dc9af24  Merge pull request #15335 from apache/feat-ripple-effect-count
     add 682ff91  enable pointer's z-level adjustment in gauge chart & set default z-level above detail and title
     add eaf1ee4  Merge pull request #15337 from AmosChenYQ/enable-level-adjustment-in-gauge-chart
     add 75a6925  bug(tooltip): tooltip arrow will follow borderWidth. close #14373
     add 5a8bb26  merged with master to resolve conflicts
     add cf94320  reset build files
     add a7df002  reset build files
     add 2e1270b  arrow position made dynamic based on borderWidth
     add f84df5b  declarations moved after if block
     add 2b39cb4  tooltip position fixed
     add 2f7eb1e  requested changes performed
     add 37c4037  Merge remote-tracking branch 'upstream/master' into fix-14373
     add 6d02c13  fix: calculations made more accurate
     add 607bf95  Update src/component/tooltip/TooltipHTMLContent.ts
     add 34847b4  Update src/component/tooltip/TooltipHTMLContent.ts
     add 71d2be3  Update src/component/tooltip/TooltipHTMLContent.ts
     add 37d9ab8  Update src/component/tooltip/TooltipHTMLContent.ts
     add 0d30818  Merge pull request #14393 from g7i/fix-14373
     add 86153c1  Merge branch 'master' into fix-tooltip-dom
     add 6e32f07  Merge pull request #15313 from apache/fix-tooltip-dom
     add 48d8137  feat(gauge): Add data index and series index for indexing the data by element
     add 6fa436b  use anonymous function in setCommonECData to avoid wrong context
     add c262acb  use anonymous function in setCommonECData to avoid wrong context
     add d61ef0c  Merge pull request #14688 from apache/feat-14655
     add aec053d  fix(sankey): gradient should follow orient
     add 8f0d8d7  Merge pull request #15363 from susiwen8/sankey-linecolor-vertical
     add 87cccdd  fix(candlestick): fix style lost after update
     add 4acefbe  test(candlestick): add recorded interaction
     add c6edd70  Merge pull request #15368 from apache/fix-candlestick-update
     add 4fd7d7d  fix(geo): fix geo switch from hidden to show fail.
     add 993a75f  Merge pull request #15361 from apache/fix-geo-show-switch
     add 67a49bc  fix: root node related edge not removed when update data
     add db6a91a  Merge pull request #15251 from ssthouse/fix/tree-unexpected-edges
     add 82495ae  fix: hovered tooltip not update when options's series data changed
     add 15f318b  fix: CR suggestions
     add 8bfa7cc  fix: array index error & NPE not handled issue
     add 6321470  fix: CR suggestions
     add 9b2d392  Merge pull request #15194 from ssthouse/fix/tooltip-update-with-options
     add bcc0305  treemap: use treeAncestors in callback params
     add 0db3feb  Merge pull request #14976 from apache/pissang-patch-1
     add 81f0ef4  fix(radar): lineStyle.join default round #13201
     add 19834cf  Merge pull request #15381 from apache/fix-radar
     add 460f139  Merge branch 'master' into feat-colorBy
     add c6e9915  fix(colorBy): add colorBy in series

No new revisions were added by this update.

Summary of changes:
 src/chart/bar/BarSeries.ts                     |   6 +-
 src/chart/bar/BarView.ts                       |   4 +-
 src/chart/boxplot/BoxplotSeries.ts             |   4 +-
 src/chart/candlestick/CandlestickSeries.ts     |   4 +-
 src/chart/custom/CustomSeries.ts               |   2 -
 src/chart/effectScatter/EffectScatterSeries.ts |  10 +-
 src/chart/funnel/FunnelSeries.ts               |   5 +-
 src/chart/gauge/GaugeSeries.ts                 |  10 +-
 src/chart/gauge/GaugeView.ts                   |  12 +-
 src/chart/graph/GraphSeries.ts                 |   5 +-
 src/chart/heatmap/HeatmapSeries.ts             |   5 +-
 src/chart/helper/EffectSymbol.ts               |  14 +-
 src/chart/helper/SymbolDraw.ts                 |   7 +-
 src/chart/helper/whiskerBoxCommon.ts           |   9 +-
 src/chart/line/LineSeries.ts                   |   5 +-
 src/chart/lines/LinesSeries.ts                 |   5 +-
 src/chart/map/MapSeries.ts                     |   5 +-
 src/chart/parallel/ParallelSeries.ts           |   5 +-
 src/chart/pie/PieSeries.ts                     |   5 +-
 src/chart/radar/RadarSeries.ts                 |   8 +-
 src/chart/sankey/SankeySeries.ts               |   5 +-
 src/chart/sankey/SankeyView.ts                 |   2 +-
 src/chart/scatter/ScatterSeries.ts             |   5 +-
 src/chart/themeRiver/ThemeRiverSeries.ts       |   5 +-
 src/chart/tree/TreeView.ts                     |  97 ++++---
 src/chart/treemap/TreemapSeries.ts             |  11 +-
 src/component/geo/GeoView.ts                   |  26 +-
 src/component/tooltip/TooltipHTMLContent.ts    |  51 +++-
 src/component/tooltip/TooltipRichContent.ts    |   2 +-
 src/component/tooltip/TooltipView.ts           |  91 +++---
 src/data/List.ts                               |  30 +-
 src/model/Series.ts                            |   4 +-
 src/util/innerStore.ts                         |  22 ++
 src/util/types.ts                              |  14 +-
 src/visual/aria.ts                             |   6 +-
 src/visual/style.ts                            |   6 +-
 test/candlestick-case.html                     | 369 +++++++++++++++++++++++++
 test/effectScatter.html                        |   9 +-
 test/geo-update.html                           |  49 ++++
 test/geoScatter.html                           |  23 +-
 test/radar4.html                               |  48 ++++
 test/runTest/actions/__meta__.json             |   2 +
 test/runTest/actions/candlestick-case.json     |   1 +
 test/runTest/actions/geo-update.json           |   1 +
 test/sankey.html                               |  13 +-
 test/scatter.html                              |   9 +-
 test/tooltip-domnode.html                      |  88 ++++++
 test/tree-basic.html                           |   6 +-
 48 files changed, 886 insertions(+), 239 deletions(-)
 create mode 100644 test/candlestick-case.html
 create mode 100644 test/runTest/actions/candlestick-case.json
 create mode 100644 test/runTest/actions/geo-update.json

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