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/07/30 02:24:41 UTC

[incubator-echarts] branch next updated (6eca9ac -> 95534a4)

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 6eca9ac  style(time): improve code style
     new 785c6e2  Feat: new default tooltip
     new 60c5897  Fix typo and change layout for tooltip content
     new c5fcc79  Remove chinese comments
     new 0bc34e4  tooltip new layout update
     new bcf3258  Find nearset series
     new 5232cad  tooltip arrow style and box shadow
     new 3ab2274  New tooltip for pie
     new ebadfd2  Tooltip margin
     new 4706928  Radar tooltip layout
     new 48dc408  save
     new 76c645b  Merge branch 'next' into tooltip
     new 11d3a50  tooltip unified function
     new 5f65d97  code simplification
     new 050ad8c  Sankey tooltip border
     new 29cad06  Set sankey item visual
     new 8809320  Find cartesian2d base axis
     new c5ae307  Add tooltip order value
     new 078f89f  Markline tooltip border color
     new dccaa3a  Map tooltip series name condition
     new 664386d  Tooltip border color works with gradient
     new 0a7b426  Merge branch 'next' into tooltip
     new 48fa1a7  Fix markpoint on stacked chart are incorrect
     new 05338c8  Encode html for markpoint
     new f2bfddf  Merge branch 'next' into tooltip
     new 00a7dac  Tweak typo
     new ecd7aac  Tooltip border work with stacked line chart
     new b53ca68  Tooltip arrow position
     new 9461341  Add test case
     new a0b2039  Remove useless return
     new bb80c7a  Change option value
     new 27428a9  Merge branch 'next' into tooltip
     new 93dc85f  Tooltip order works in Radar
     new 0899808  remove console
     new 3ddb125  Fix tooltip content is null or undefined, tooltip still show
     new f8bc64f  Fix tooltip was not centered
     new 732f0f2  Fix multiple chart margin was to small
     new b8a19a4  Partial correction base on CR
     new 8e1f581  Delete unused params for tooltip cb
     new f173743  Add default border color
     new ad1e885  test: new-tooltip.html style
     new 0132df7  Use data params coordinateSystem not first series
     new 666e775  Tooltip order
     new f295eca  Add test case for tooltip order
     new 4802ea2  Hold tooltip arrow
     new 3bd954e  Revert "Hold tooltip arrow"
     new 2888c74  Calc tooltip position when 'position' is 'top'
     new c202e85  Tooltip confine is true, don't show arrow
     new c988039  Correction
     new f6d321a  Remove unnecessary if statement
     new c2eaa34  Merge branch 'next' into tooltip
     new 23d44a8  Fix tooltip richtext and tooltip position
     new aa850c5  Fix tooltip rich text format
     new 805a9f7  Tooltip rich text border color
     new 96be2b7  Tooltip rich text white space
     new 747eaa3  Tooltip rich text alignment
     new 09f54fd  Tooltiop rich text left alignment
     new 587e3fc  Merge branch 'next' into tooltip
     new 67e0b98  Merge remote-tracking branch 'upstream/next' into tooltip
     new eeb81e0  Merge branch 'next' into tooltip
     new 7e7564b  Remove useless import
     new 0936253  Remove duplicate import
     new 65e04af  Add test case
     new 9425323  Revert type
     new 0a9d0bd  Correction base on CR
     new 05909e7  Tooltip style change
     new 4399d1f  Merge branch 'next' into tooltip
     new aee0b1a  Tooltip style
     new a04682b  Fix multi sub tooltip
     new abe451b  Merge branch 'next' into tooltip
     new 7abfd73  Merge remote-tracking branch 'upstream/next' into tooltip
     new d1cf86c  Merge branch 'tooltip' of https://github.com/susiwen8/incubator-echarts into tooltip
     new acc31ad  Merge remote-tracking branch 'upstream/next' into tooltip
     new 02bfd5a  Tooltip arrow box-shadow
     new 8662a79  Tooltip style
     new 275343f  Merge remote-tracking branch 'upstream/next' into tooltip
     new 1c8c057  test case
     new 3771d44  Fix tooltip 'fly' with arrow
     new 0fe7eed  Add condition for transition
     new 4ea092b  Arrow style
     new 95534a4  Merge pull request #12947 from susiwen8/tooltip

The 6409 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/bar/BarView.ts                         |    2 +-
 src/chart/graph/GraphSeries.ts                   |   10 +-
 src/chart/lines/LinesSeries.ts                   |   10 +-
 src/chart/map/MapSeries.ts                       |   21 +-
 src/chart/radar/RadarSeries.ts                   |   58 +-
 src/chart/sankey/SankeySeries.ts                 |   31 +-
 src/chart/sankey/sankeyVisual.ts                 |   11 +-
 src/chart/themeRiver/ThemeRiverSeries.ts         |   20 +-
 src/chart/tree/TreeSeries.ts                     |   23 +-
 src/chart/treemap/TreemapSeries.ts               |   22 +-
 src/component/axisPointer/findPointFromSeries.ts |   29 +-
 src/component/geo/GeoView.ts                     |    2 +-
 src/component/marker/MarkPointView.ts            |    2 +-
 src/component/marker/MarkerModel.ts              |   30 +-
 src/component/tooltip/TooltipHTMLContent.ts      |  102 +-
 src/component/tooltip/TooltipModel.ts            |   50 +-
 src/component/tooltip/TooltipRichContent.ts      |   20 +-
 src/component/tooltip/TooltipView.ts             |  186 +-
 src/coord/radar/IndicatorAxis.ts                 |    2 +
 src/data/List.ts                                 |    2 +-
 src/label/LabelManager.ts                        |    2 +-
 src/model/Series.ts                              |   70 +-
 src/model/mixin/dataFormat.ts                    |    6 +-
 src/util/format.ts                               |    9 +-
 src/util/types.ts                                |    8 +
 test/new-tooltip.html                            | 3280 ++++++++++++++++++++++
 26 files changed, 3843 insertions(+), 165 deletions(-)
 create mode 100644 test/new-tooltip.html


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