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/24 06:20:10 UTC

[incubator-echarts] branch next updated (39bd739 -> b786334)

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 39bd739  Merge pull request #12991 from quillblue/fix-12969
     add 30c00f4  feat(dataZoom): optimize style. add borderRadius, selectedDataBackground
     add aea2fbf  feat(visualMap): optimize visualMap style. add several styling config
     add 9a665c5  feat(visualMap): optimize indicator and handle in symbolSize visual mapping
     add 3ac3175  fix(lines): fix unexpected fill in polyline
     add 41ba157  fix(export): add back echarts.format.getTextRect
     add 8fea284  fix(label): support legacy style color: 'auto' for color: 'inherit' usage.
     add 6f5d9d7  fix(symbol): fix image symbol not display bug
     add 6fca352  fix(axisPointer): not use align: 'center' because it's already been calculated
     add a7c0d8c  feat(bar): improve gaps between bar. #12935
     add a7f2c16  fix(state): not blur others when highlighting with axisPointer
     add 3ddf62a  fix: add back hover layer.
     add 26ca0b5  fix(treemap): truncate text when exceeds height
     add 459a9d8  feat(timeline): optimize timeline style. add progress config
     add 45a7ef3  timeline: progress logic tweak.
     add 1dda43c  fix(pie): fix wrong label x,y in select state when position is inside
     add 7a09ecc  refact(state): useHoverLayer all replaced with states.emphasis.hoverLayer
     add 33a8ec7  fix(legend): fix legend color with visual encoded on style.stroke
     add 74aefce  feat(timeline): improve icon and label color.
     add 1b5efea  fix(timeline): fix wrong progress status on label when several labels are ignored
     new b786334  Merge pull request #13008 from apache/optimize-style

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/ExtensionAPI.ts                                |   2 -
 src/chart/bar/BarView.ts                           |   1 -
 src/chart/bar/PictorialBarView.ts                  |  14 +-
 src/chart/custom.ts                                |   2 +-
 src/chart/gauge/GaugeView.ts                       |   4 +-
 src/chart/heatmap/HeatmapView.ts                   |   2 +-
 src/chart/helper/LineDraw.ts                       |   3 +-
 src/chart/helper/Polyline.ts                       |   1 +
 src/chart/helper/Symbol.ts                         |  31 ++-
 src/chart/helper/SymbolDraw.ts                     |   3 +-
 src/chart/pie/labelLayout.ts                       |   5 +
 src/chart/radar/RadarView.ts                       |  16 +-
 src/chart/treemap/TreemapView.ts                   |   2 +
 src/component/axisPointer/axisTrigger.ts           |  18 +-
 src/component/axisPointer/viewHelper.ts            |   1 -
 src/component/dataZoom/SliderZoomModel.ts          |  60 ++++-
 src/component/dataZoom/SliderZoomView.ts           | 141 ++++++++----
 src/component/legend/LegendView.ts                 |  21 +-
 src/component/timeline/SliderTimelineModel.ts      |  61 ++++--
 src/component/timeline/SliderTimelineView.ts       | 170 +++++++++-----
 src/component/timeline/TimelineModel.ts            |  21 ++
 src/component/visualMap/ContinuousModel.ts         |  48 +++-
 src/component/visualMap/ContinuousView.ts          | 243 +++++++++++++++------
 src/echarts.ts                                     |  75 ++++---
 src/label/labelStyle.ts                            |  46 +++-
 src/layout/barGrid.ts                              |  14 +-
 .../preprocessor.ts => legacy/getTextRect.ts}      |  38 +++-
 src/util/format.ts                                 |   3 +
 src/util/graphic.ts                                |   6 +-
 src/util/states.ts                                 |   4 +-
 src/util/symbol.ts                                 |   2 +-
 src/util/types.ts                                  |  11 +-
 test/boxplot.html                                  |   2 +-
 test/timeline-finance.html                         |   6 +-
 test/visualMap-scatter-symbolSize.html             |   1 +
 35 files changed, 778 insertions(+), 300 deletions(-)
 copy src/{chart/candlestick/preprocessor.ts => legacy/getTextRect.ts} (51%)


---------------------------------------------------------------------
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 #13008 from apache/optimize-style

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 b78633406af45e58f016a8d3c261c52259fd2d3f
Merge: 39bd739 1b5efea
Author: Yi Shen <bm...@gmail.com>
AuthorDate: Fri Jul 24 14:20:02 2020 +0800

    Merge pull request #13008 from apache/optimize-style
    
    [FEATURE] [5.0] Improve style of dataZoom, visualMap, timeline components. Bug fixes from next branch

 src/ExtensionAPI.ts                           |   2 -
 src/chart/bar/BarView.ts                      |   1 -
 src/chart/bar/PictorialBarView.ts             |  14 +-
 src/chart/custom.ts                           |   2 +-
 src/chart/gauge/GaugeView.ts                  |   4 +-
 src/chart/heatmap/HeatmapView.ts              |   2 +-
 src/chart/helper/LineDraw.ts                  |   3 +-
 src/chart/helper/Polyline.ts                  |   1 +
 src/chart/helper/Symbol.ts                    |  31 +++-
 src/chart/helper/SymbolDraw.ts                |   3 +-
 src/chart/pie/labelLayout.ts                  |   5 +
 src/chart/radar/RadarView.ts                  |  16 +-
 src/chart/treemap/TreemapView.ts              |   2 +
 src/component/axisPointer/axisTrigger.ts      |  18 +-
 src/component/axisPointer/viewHelper.ts       |   1 -
 src/component/dataZoom/SliderZoomModel.ts     |  60 +++++--
 src/component/dataZoom/SliderZoomView.ts      | 141 ++++++++++-----
 src/component/legend/LegendView.ts            |  21 ++-
 src/component/timeline/SliderTimelineModel.ts |  61 +++++--
 src/component/timeline/SliderTimelineView.ts  | 170 ++++++++++++------
 src/component/timeline/TimelineModel.ts       |  21 +++
 src/component/visualMap/ContinuousModel.ts    |  48 ++++-
 src/component/visualMap/ContinuousView.ts     | 243 ++++++++++++++++++--------
 src/echarts.ts                                |  75 ++++----
 src/label/labelStyle.ts                       |  46 ++++-
 src/layout/barGrid.ts                         |  14 +-
 src/legacy/getTextRect.ts                     |  50 ++++++
 src/util/format.ts                            |   3 +
 src/util/graphic.ts                           |   6 +-
 src/util/states.ts                            |   4 +-
 src/util/symbol.ts                            |   2 +-
 src/util/types.ts                             |  11 +-
 test/boxplot.html                             |   2 +-
 test/timeline-finance.html                    |   6 +-
 test/visualMap-scatter-symbolSize.html        |   1 +
 35 files changed, 801 insertions(+), 289 deletions(-)



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