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

[incubator-echarts] branch next updated (bf5c08a -> fca7f98)

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

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


    from 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
     new fca7f98  Merge pull request #12832 from apache/extent_filtered_by_other_axis

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/component/dataZoom/AxisProxy.ts              | 115 ++----
 src/component/dataZoom/DataZoomModel.ts          |   4 +-
 src/component/dataZoom/dataZoomProcessor.ts      |   2 +-
 src/component/dataZoom/helper.ts                 |   1 +
 src/component/gridSimple.ts                      |   1 +
 src/coord/axisCommonTypes.ts                     |  16 +-
 src/coord/axisHelper.ts                          | 158 +++------
 src/coord/axisModelCommonMixin.ts                |  57 +--
 src/coord/cartesian/AxisModel.ts                 |  15 -
 src/coord/cartesian/Grid.ts                      |  55 +--
 src/coord/cartesian/cartesianAxisHelper.ts       |  35 ++
 src/coord/cartesian/defaultAxisExtentFromData.ts | 262 ++++++++++++++
 src/coord/polar/polarCreator.ts                  |  16 +-
 src/coord/radar/Radar.ts                         |   7 +-
 src/coord/scaleRawExtentInfo.ts                  | 316 +++++++++++++++++
 src/data/List.ts                                 |  14 +-
 src/echarts.ts                                   |   9 +-
 src/helper.ts                                    |   2 -
 src/scale/Scale.ts                               |   5 +
 test/axis-filter-extent.html                     | 422 +++++++++++++++++++++++
 20 files changed, 1167 insertions(+), 345 deletions(-)
 create mode 100644 src/coord/cartesian/defaultAxisExtentFromData.ts
 create mode 100644 src/coord/scaleRawExtentInfo.ts
 create mode 100644 test/axis-filter-extent.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 #12832 from apache/extent_filtered_by_other_axis

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

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

commit fca7f98586caca5b1ee966d877cadafa737f94cd
Merge: bf5c08a 6b95e3d
Author: sushuang <su...@gmail.com>
AuthorDate: Sat Jun 20 15:15:48 2020 +0800

    Merge pull request #12832 from apache/extent_filtered_by_other_axis
    
    Extent filtered by other axis

 src/component/dataZoom/AxisProxy.ts              | 115 ++----
 src/component/dataZoom/DataZoomModel.ts          |   4 +-
 src/component/dataZoom/dataZoomProcessor.ts      |   2 +-
 src/component/dataZoom/helper.ts                 |   1 +
 src/component/gridSimple.ts                      |   1 +
 src/coord/axisCommonTypes.ts                     |  16 +-
 src/coord/axisHelper.ts                          | 158 +++------
 src/coord/axisModelCommonMixin.ts                |  57 +--
 src/coord/cartesian/AxisModel.ts                 |  15 -
 src/coord/cartesian/Grid.ts                      |  55 +--
 src/coord/cartesian/cartesianAxisHelper.ts       |  35 ++
 src/coord/cartesian/defaultAxisExtentFromData.ts | 262 ++++++++++++++
 src/coord/polar/polarCreator.ts                  |  16 +-
 src/coord/radar/Radar.ts                         |   7 +-
 src/coord/scaleRawExtentInfo.ts                  | 316 +++++++++++++++++
 src/data/List.ts                                 |  14 +-
 src/echarts.ts                                   |   9 +-
 src/helper.ts                                    |   2 -
 src/scale/Scale.ts                               |   5 +
 test/axis-filter-extent.html                     | 422 +++++++++++++++++++++++
 20 files changed, 1167 insertions(+), 345 deletions(-)



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