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/06/23 04:38:51 UTC

[incubator-echarts] branch custom-series-enhance updated (d0e83c2 -> f42f395)

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

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


    from d0e83c2  fix: little modify in during api: add return this to setter and change name from "setAttr" to "setTransform".
     add e2dac51  WIP(bar-racing): sort axis
     add e256517  WIP(bar-race): most logic without label animation
     add 82c70ab  feat(bar-race): one series done
     add a3afee5  WIP(bar-race): update during
     add 027b1be  WIP(bar-race): update animation
     add 853759b  merge next
     add 5d081d1  Merge branch 'next' into feat-bar-race
     add 5b1485a  feat(bar-race): label value animation
     add 4d41640  feat(bar-race): label formatter
     add fb138d4  test(bar-race): update bar race test
     add fbdb003  ts: fix es class usage for inheritance.
     add 750d604  ts: dataset change to ts.
     add de86b1a  ts: export option
     add 103c9f7  Merge branch 'next' into feat-bar-race
     add bf5c08a  feat: provide elapsedTime in rendered event
     add b116faa  fix: some refactor about dataZoom and axis scale extent calculation:
     add 4a5f6d6  feature: Enable category axis min/max to shrink the other axis extent in cartesian. After this modification, if some data if out of the range of a category axis, the data item will not be filtered, but the extent of the other axis will be calculated based on the filtered data. If dataZoom is used in either of the xAxis or yAxis in that cartesian, the shrink will not be performed.
     add 6b95e3d  fix: fix some typo and comments
     add fca7f98  Merge pull request #12832 from apache/extent_filtered_by_other_axis
     add 6059708  merge
     add 628dd5c  fix(bar-race): fix merging axis extent from next
     add b526ecf  fix(bar-race): fix according to review comments
     add 662eea3  ts: fix type.
     add fe1666d  fix: resolve the circular dependency.
     add 3737601  Merge branch 'next' into feat-bar-race
     add 79fbcb9  Merge pull request #12484 from apache/feat-bar-race
     add f42f395  Merge branch 'next' into custom-series-enhance

No new revisions were added by this update.

Summary of changes:
 option.ts                                          | 107 +++++
 .../sunburst.ts => action/changeAxisOrder.ts}      |  30 +-
 src/chart/bar.ts                                   |   1 +
 src/chart/bar/BarView.ts                           | 238 ++++++++++-
 src/chart/bar/PictorialBarSeries.ts                |   2 +
 src/chart/graph/GraphSeries.ts                     |   2 +-
 src/chart/helper/labelHelper.ts                    |  15 +-
 src/chart/parallel/ParallelSeries.ts               |   2 +
 src/component/dataZoom/AxisProxy.ts                | 115 +-----
 src/component/dataZoom/DataZoomModel.ts            |   4 +-
 src/component/dataZoom/InsideZoomModel.ts          |   2 +-
 src/component/dataZoom/SliderZoomModel.ts          |   2 +-
 src/component/dataZoom/dataZoomProcessor.ts        |   2 +-
 src/component/dataZoom/helper.ts                   |   1 +
 src/component/dataset.ts                           |  49 +--
 src/component/gridSimple.ts                        |   1 +
 src/component/timeline/SliderTimelineModel.ts      |   2 +-
 src/coord/Axis.ts                                  |   2 +-
 src/coord/axisCommonTypes.ts                       |  16 +-
 src/coord/axisHelper.ts                            | 155 +++----
 src/coord/axisModelCommonMixin.ts                  |  57 +--
 src/coord/cartesian/Axis2D.ts                      |  15 +-
 src/coord/cartesian/AxisModel.ts                   |  26 +-
 src/coord/cartesian/Grid.ts                        |  65 ++-
 src/coord/cartesian/GridModel.ts                   |   2 +-
 src/coord/cartesian/cartesianAxisHelper.ts         |  35 ++
 src/coord/cartesian/defaultAxisExtentFromData.ts   | 262 ++++++++++++
 src/coord/polar/polarCreator.ts                    |  16 +-
 src/coord/radar/Radar.ts                           |   5 +-
 src/coord/scaleRawExtentInfo.ts                    | 321 +++++++++++++++
 src/data/List.ts                                   |  14 +-
 src/data/helper/dataStackHelper.ts                 |   6 +-
 src/echarts.ts                                     |  13 +-
 src/helper.ts                                      |   2 -
 src/model/mixin/dataFormat.ts                      |  19 +-
 src/scale/Ordinal.ts                               |  25 +-
 src/scale/Scale.ts                                 |   9 +-
 src/util/clazz.ts                                  |  28 +-
 src/util/graphic.ts                                | 190 +++++++--
 src/util/types.ts                                  |   8 +-
 test/axis-filter-extent.html                       | 422 +++++++++++++++++++
 test/bar-race.html                                 | 455 +++++++++++++++++++++
 42 files changed, 2279 insertions(+), 464 deletions(-)
 create mode 100644 option.ts
 copy src/{chart/sunburst.ts => action/changeAxisOrder.ts} (61%)
 create mode 100644 src/coord/cartesian/defaultAxisExtentFromData.ts
 create mode 100644 src/coord/scaleRawExtentInfo.ts
 create mode 100644 test/axis-filter-extent.html
 create mode 100644 test/bar-race.html


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