[echarts-handbook] branch master updated: add sidebar toggle in mobile

2021-08-28 Thread shenyi
This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
 new 755d545  add sidebar toggle in mobile
755d545 is described below

commit 755d545b92e78bfb95b188bfa3e09afa8bd98b88
Author: pissang 
AuthorDate: Sat Aug 28 16:17:14 2021 +0800

add sidebar toggle in mobile
---
 components/partials/Sidebar.vue  | 114 ++-
 contents/en/posts.yml|   8 +--
 contents/zh/basics/release-note/5-2-0.md |   2 +-
 contents/zh/posts.yml|   4 +-
 4 files changed, 118 insertions(+), 10 deletions(-)

diff --git a/components/partials/Sidebar.vue b/components/partials/Sidebar.vue
index 1b28f24..e9a89d3 100644
--- a/components/partials/Sidebar.vue
+++ b/components/partials/Sidebar.vue
@@ -1,6 +1,11 @@
 
-  
-
+  
 
   
 
   
 
+
+  
+  http://www.w3.org/2000/svg";
+class="h-6 w-6"
+fill="none"
+viewBox="0 0 24 24"
+stroke="currentColor"
+v-if="!sidebarOpen"
+  >
+
+  
+  http://www.w3.org/2000/svg";
+class="h-6 w-6"
+fill="none"
+viewBox="0 0 24 24"
+stroke="currentColor"
+v-else
+  >
+
+  
+
   
 
 
@@ -26,6 +77,17 @@ export default Vue.extend({
 SidebarNavItem
   },
 
+  data() {
+return {
+  sidebarOpen: false
+}
+  },
+  watch: {
+$route(to, from) {
+  this.sidebarOpen = false
+}
+  },
+
   mounted() {
 const $actived = this.$el.querySelector('.actived') as HTMLElement
 if ($actived) {
@@ -56,10 +118,56 @@ export default Vue.extend({
   padding: 0;
   overflow-y: auto;
   border-right: 1px solid #eee;
+  border-bottom: none;
 
-  @media (max-width: 768px) {
+  .open-sidebar {
 display: none;
   }
+
+  @media (max-width: 768px) {
+&.closed {
+  left: -280px;
+  @apply shadow-none;
+}
+
+position: fixed;
+left: 0;
+width: 280px;
+top: 50px;
+bottom: 0;
+background-color: #fff;
+@apply shadow-2xl;
+border-right: none;
+overflow: visible;
+
+@apply transition-all;
+
+.bd-docs-nav {
+  overflow-x: hidden;
+  overflow-y: scroll;
+  width: 280px;
+  height: calc(100vh - 50px);
+}
+
+.open-sidebar {
+  display: block;
+  position: absolute;
+  left: 280px;
+  bottom: 20px;
+  width: 40px;
+  height: 40px;
+  padding: 5px;
+  color: #000;
+  z-index: 1200;
+  background: #eee;
+  @apply shadow-lg rounded-r-2xl;
+
+  svg {
+width: 100%;
+height: 100%;
+  }
+}
+  }
 }
 
 .bd-sidenav {
diff --git a/contents/en/posts.yml b/contents/en/posts.yml
index 3e67478..0621f70 100644
--- a/contents/en/posts.yml
+++ b/contents/en/posts.yml
@@ -14,16 +14,16 @@
   dir: inspiration
 - title: Get Help
   dir: help
-- title: Release Note
+- title: What's New
   dir: release-note
   children:
-- title: ECharts 5.2.0
-  draft: true
-  dir: 5-2-0
 - title: ECharts 5 Features
   dir: v5-feature
 - title: ECharts 5 Upgrade Guide
   dir: v5-upgrade-guide
+- title: 5.2
+  draft: true
+  dir: 5-2-0
 - title: Concepts
   dir: concepts
   children:
diff --git a/contents/zh/basics/release-note/5-2-0.md 
b/contents/zh/basics/release-note/5-2-0.md
index 689f3ee..4349c5c 100644
--- a/contents/zh/basics/release-note/5-2-0.md
+++ b/contents/zh/basics/release-note/5-2-0.md
@@ -2,7 +2,7 @@
 
 ## 全局过渡动画
 
-在 Apache ECharts 
中我们一直把自然流畅的过渡动画作为一个重要特性。通过避免数据的突变,不仅仅可以改善视觉效果,更为表达数据的关联和演变提供了可能。因此,在 5.2.0 
中,我们进一步将过渡动画从表现系列内部数据的变化,泛化到全局能力。接下来,我们会看到这种全局的**过渡动画(Universal 
Transition)**是如何为图表增加表现力和叙事能力的。
+在 Apache ECharts 
中我们一直把自然流畅的过渡动画作为一个重要特性。通过避免数据的突变,不仅仅可以改善视觉效果,更为表达数据的关联和演变提供了可能。因此,在 5.2.0 
中,我们进一步将过渡动画从表现系列内部数据的变化,泛化到全局能力。接下来,我们会看到这种全局的**过渡动画 Universal 
Transition**是如何为图表增加表现力和叙事能力的。
 
 
在之前的版本中,过渡动画有一定的局限性:只能用于相同类型的图形的位置、尺寸、形状,而且只能作用在相同类型的系列上。比如,下面例子就是通过饼图中扇区形状的变化反映了数据分布的变化:
 
diff --git a/contents/zh/posts.yml b/contents/zh/posts.yml
index e6aa5e8..bef1eca 100644
--- a/contents/zh/posts.yml
+++ b/contents/zh/posts.yml
@@ -14,14 +14,14 @@
   dir: inspiration
 - title: 寻求帮助
   dir: help
-- title: 版本介绍
+- title: 版本特性
   dir: release-note
   children:
 - title: ECharts 5 特性介绍
   dir: v5-feature
 - title: ECharts 5 升级指南
   dir: v5-upgrade-guide
-- title: 5.2.0
+- title: 5.2
   dir: 5-2-0
 - title: 概念篇
   dir: concepts

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



[echarts-handbook] branch gh-pages updated (59b9dce -> 51f609f)

2021-08-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git.


 discard 59b9dce  Deploying to gh-pages from @ 
apache/echarts-handbook@00e94854140539a2648d264b035ca12b3b7917e9 🚀
 new 51f609f  Deploying to gh-pages from @ 
apache/echarts-handbook@755d545b92e78bfb95b188bfa3e09afa8bd98b88 🚀

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (59b9dce)
\
 N -- N -- N   refs/heads/gh-pages (51f609f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 docs/200.html  | 6 +++---
 docs/_nuxt/{5838dc2.js => b4fea58.js}  | 2 +-
 docs/_nuxt/css/73f0b25.css | 1 +
 docs/_nuxt/css/ff26ee9.css | 1 -
 docs/_nuxt/js/4dac5ffda1dc9ca4d11f.js  | 1 -
 docs/_nuxt/js/af622fd8c98d42215c80.js  | 1 +
 docs/_nuxt/js/{afa6b382e83ff282f421.js => d7701217c75df72c3cc8.js} | 2 +-
 docs/_nuxt/js/e631f02e203ac6586dc7.js  | 1 -
 docs/_nuxt/js/f1c84086940933bcd1e2.js  | 1 +
 docs/en/application/chart-types/bar/bar-race/index.html| 6 +++---
 docs/en/application/chart-types/bar/basic-bar/index.html   | 6 +++---
 docs/en/application/chart-types/bar/stacked-bar/index.html | 6 +++---
 docs/en/application/chart-types/bar/waterfall/index.html   | 6 +++---
 docs/en/application/chart-types/line/area-line/index.html  | 6 +++---
 docs/en/application/chart-types/line/basic-line/index.html | 6 +++---
 docs/en/application/chart-types/line/smooth-line/index.html| 6 +++---
 docs/en/application/chart-types/line/stacked-line/index.html   | 6 +++---
 docs/en/application/chart-types/line/step-line/index.html  | 6 +++---
 docs/en/application/chart-types/pie/basic-pie/index.html   | 6 +++---
 docs/en/application/chart-types/pie/doughnut/index.html| 6 +++---
 docs/en/application/chart-types/pie/rose/index.html| 6 +++---
 docs/en/application/chart-types/scatter/basic-scatter/index.html   | 6 +++---
 docs/en/application/cross-platform/server/index.html   | 4 ++--
 docs/en/application/data/dynamic-data/index.html   | 6 +++---
 docs/en/application/interaction/drag/index.html| 6 +++---
 docs/en/application/label/rich-text/index.html | 6 +++---
 docs/en/basics/download/index.html | 4 ++--
 docs/en/basics/help/index.html | 4 ++--
 docs/en/basics/import/index.html   | 6 +++---
 docs/en/basics/inspiration/index.html  | 4 ++--
 docs/en/basics/release-note/v5-feature/index.html  | 6 +++---
 docs/en/basics/release-note/v5-upgrade-guide/index.html| 6 +++---
 docs/en/best-practice/aria/index.html  | 6 +++---
 docs/en/best-practice/canvas-vs-svg/index.html | 6 +++---
 docs/en/concepts/axis/index.html   | 6 +++---
 docs/en/concepts/chart-size/index.html | 6 +++---
 docs/en/concepts/data-transform/index.html | 6 +++---
 docs/en/concepts/dataset/index.html| 6 +++---
 docs/en/concepts/event/index.html  | 6 +++---
 docs/en/concepts/legend/index.html | 6 +++---
 docs/en/concepts/style/index.html  | 6 +++---
 docs/en/concepts/visual-map/index.html | 6 +++---
 docs/en/get-started/index.html | 6 +++---
 docs/en/index.html | 4 ++--
 docs/en/meta/edit-guide/index.html | 6 +++---
 docs/index.html| 4 ++--
 docs/zh/application/chart-types/bar/bar-race/in

[GitHub] [echarts] 100pah merged pull request #15618: Fix lint.

2021-08-28 Thread GitBox


100pah merged pull request #15618:
URL: https://github.com/apache/echarts/pull/15618


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [echarts] echarts-bot[bot] commented on pull request #15618: Fix lint.

2021-08-28 Thread GitBox


echarts-bot[bot] commented on pull request #15618:
URL: https://github.com/apache/echarts/pull/15618#issuecomment-907593441


   Congratulations! Your PR has been merged. Thanks for your contribution! 👍


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[echarts] 01/01: Merge pull request #15618 from apache/release-dev

2021-08-28 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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

commit 5fb2fab98bcc6234aea920fdd9c1b6c9f27d21c1
Merge: 7890d0e 6083ce5
Author: sushuang 
AuthorDate: Sat Aug 28 16:27:03 2021 +0800

Merge pull request #15618 from apache/release-dev

Fix lint.

 src/coord/axisModelCommonMixin.ts |  1 +
 src/data/Graph.ts |  1 +
 src/data/Tree.ts  |  3 ++-
 src/label/labelStyle.ts   |  4 +---
 src/layout/points.ts  |  1 -
 src/model/Model.ts| 11 ++-
 src/util/conditionalExpression.ts |  2 +-
 src/visual/style.ts   |  2 +-
 8 files changed, 13 insertions(+), 12 deletions(-)

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



[echarts] branch release updated (7890d0e -> 5fb2fab)

2021-08-28 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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


from 7890d0e  Merge pull request #15612 from apache/release-dev
 add 6083ce5  fix: fix lint.
 new 5fb2fab  Merge pull request #15618 from apache/release-dev

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/coord/axisModelCommonMixin.ts |  1 +
 src/data/Graph.ts |  1 +
 src/data/Tree.ts  |  3 ++-
 src/label/labelStyle.ts   |  4 +---
 src/layout/points.ts  |  1 -
 src/model/Model.ts| 11 ++-
 src/util/conditionalExpression.ts |  2 +-
 src/visual/style.ts   |  2 +-
 8 files changed, 13 insertions(+), 12 deletions(-)

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



[echarts-handbook] branch master updated: style tweaks on mobile

2021-08-28 Thread shenyi
This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
 new b7bf288  style tweaks on mobile
b7bf288 is described below

commit b7bf288eb87180d7606d755d6ecfd3a9202c05ac
Author: pissang 
AuthorDate: Sat Aug 28 16:29:44 2021 +0800

style tweaks on mobile
---
 components/partials/Sidebar.vue | 2 +-
 layouts/default.vue | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/components/partials/Sidebar.vue b/components/partials/Sidebar.vue
index e9a89d3..fbe0ade 100644
--- a/components/partials/Sidebar.vue
+++ b/components/partials/Sidebar.vue
@@ -153,7 +153,7 @@ export default Vue.extend({
   display: block;
   position: absolute;
   left: 280px;
-  bottom: 20px;
+  bottom: 60px;
   width: 40px;
   height: 40px;
   padding: 5px;
diff --git a/layouts/default.vue b/layouts/default.vue
index ab41291..e8dd897 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -69,6 +69,7 @@ body {
 
   @media (max-width: 768px) {
 padding-left: 30px;
+padding-right: 30px;
   }
 }
 

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



[echarts-handbook] branch gh-pages updated (51f609f -> 4f2550b)

2021-08-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git.


 discard 51f609f  Deploying to gh-pages from @ 
apache/echarts-handbook@755d545b92e78bfb95b188bfa3e09afa8bd98b88 🚀
 new 4f2550b  Deploying to gh-pages from @ 
apache/echarts-handbook@b7bf288eb87180d7606d755d6ecfd3a9202c05ac 🚀

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (51f609f)
\
 N -- N -- N   refs/heads/gh-pages (4f2550b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 docs/200.html  | 6 +++---
 docs/_nuxt/{b4fea58.js => 98946d9.js}  | 2 +-
 docs/_nuxt/css/{73f0b25.css => 47b5366.css}| 2 +-
 docs/_nuxt/js/{d7701217c75df72c3cc8.js => afa6b382e83ff282f421.js} | 2 +-
 docs/_nuxt/js/{af622fd8c98d42215c80.js => dde3692291dfba9fb6b9.js} | 0
 docs/en/application/chart-types/bar/bar-race/index.html| 4 ++--
 docs/en/application/chart-types/bar/basic-bar/index.html   | 4 ++--
 docs/en/application/chart-types/bar/stacked-bar/index.html | 4 ++--
 docs/en/application/chart-types/bar/waterfall/index.html   | 4 ++--
 docs/en/application/chart-types/line/area-line/index.html  | 4 ++--
 docs/en/application/chart-types/line/basic-line/index.html | 4 ++--
 docs/en/application/chart-types/line/smooth-line/index.html| 4 ++--
 docs/en/application/chart-types/line/stacked-line/index.html   | 4 ++--
 docs/en/application/chart-types/line/step-line/index.html  | 4 ++--
 docs/en/application/chart-types/pie/basic-pie/index.html   | 4 ++--
 docs/en/application/chart-types/pie/doughnut/index.html| 4 ++--
 docs/en/application/chart-types/pie/rose/index.html| 4 ++--
 docs/en/application/chart-types/scatter/basic-scatter/index.html   | 4 ++--
 docs/en/application/cross-platform/server/index.html   | 4 ++--
 docs/en/application/data/dynamic-data/index.html   | 4 ++--
 docs/en/application/interaction/drag/index.html| 4 ++--
 docs/en/application/label/rich-text/index.html | 4 ++--
 docs/en/basics/download/index.html | 4 ++--
 docs/en/basics/help/index.html | 4 ++--
 docs/en/basics/import/index.html   | 4 ++--
 docs/en/basics/inspiration/index.html  | 4 ++--
 docs/en/basics/release-note/v5-feature/index.html  | 4 ++--
 docs/en/basics/release-note/v5-upgrade-guide/index.html| 4 ++--
 docs/en/best-practice/aria/index.html  | 4 ++--
 docs/en/best-practice/canvas-vs-svg/index.html | 4 ++--
 docs/en/concepts/axis/index.html   | 4 ++--
 docs/en/concepts/chart-size/index.html | 4 ++--
 docs/en/concepts/data-transform/index.html | 4 ++--
 docs/en/concepts/dataset/index.html| 4 ++--
 docs/en/concepts/event/index.html  | 4 ++--
 docs/en/concepts/legend/index.html | 4 ++--
 docs/en/concepts/style/index.html  | 4 ++--
 docs/en/concepts/visual-map/index.html | 4 ++--
 docs/en/get-started/index.html | 4 ++--
 docs/en/index.html | 4 ++--
 docs/en/meta/edit-guide/index.html | 4 ++--
 docs/index.html| 4 ++--
 docs/zh/application/chart-types/bar/bar-race/index.html| 4 ++--
 docs/zh/application/chart-types/bar/basic-bar/index.html   | 4 ++--
 docs/zh/application/chart-types/bar/stacked-bar/index.html | 4 ++--
 docs/zh/application/chart-types/bar/waterfall/index.html   | 4 ++--
 docs/zh/application/chart-types/line/area-line/index.html  | 4 ++--
 docs/zh/application/c

[echarts] branch release-dev updated (6083ce5 -> fd9bf4a)

2021-08-28 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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


from 6083ce5  fix: fix lint.
 add 5fb2fab  Merge pull request #15618 from apache/release-dev
 new fd9bf4a  release 5.2.0

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:
 dist/echarts.common.js  | 12552 ++---
 dist/echarts.common.js.map  | 2 +-
 dist/echarts.common.min.js  | 4 +-
 dist/echarts.esm.js | 36040 +++--
 dist/echarts.esm.js.map | 2 +-
 dist/echarts.esm.min.js | 4 +-
 dist/echarts.js | 36041 --
 dist/echarts.js.map | 2 +-
 dist/echarts.min.js | 4 +-
 dist/echarts.simple.js  | 11727 +++--
 dist/echarts.simple.js.map  | 2 +-
 dist/echarts.simple.min.js  | 4 +-
 package-lock.json   | 8 +-
 package.json| 4 +-
 src/core/echarts.ts | 4 +-
 src/label/installLabelLayout.ts |20 +
 src/label/sectorLabel.ts|20 +
 17 files changed, 50780 insertions(+), 45660 deletions(-)

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



[GitHub] [echarts] echarts-bot[bot] commented on pull request #15619: release 5.2.0

2021-08-28 Thread GitBox


echarts-bot[bot] commented on pull request #15619:
URL: https://github.com/apache/echarts/pull/15619#issuecomment-907601246


   Thanks for your contribution!
   The community will review it ASAP. In the meanwhile, please checkout [the 
coding standard](https://echarts.apache.org/en/coding-standard.html) and Wiki 
about [How to make a pull 
request](https://github.com/apache/echarts/wiki/How-to-make-a-pull-request).
   
   The pull request is marked to be `PR: author is committer` because you are a 
committer of this project.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [echarts] 100pah merged pull request #15619: release 5.2.0

2021-08-28 Thread GitBox


100pah merged pull request #15619:
URL: https://github.com/apache/echarts/pull/15619


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[echarts] branch release updated (5fb2fab -> 41b7769)

2021-08-28 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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


from 5fb2fab  Merge pull request #15618 from apache/release-dev
 add fd9bf4a  release 5.2.0
 new 41b7769  Merge pull request #15619 from apache/release-dev

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:
 dist/echarts.common.js  | 12552 ++---
 dist/echarts.common.js.map  | 2 +-
 dist/echarts.common.min.js  | 4 +-
 dist/echarts.esm.js | 36040 +++--
 dist/echarts.esm.js.map | 2 +-
 dist/echarts.esm.min.js | 4 +-
 dist/echarts.js | 36041 --
 dist/echarts.js.map | 2 +-
 dist/echarts.min.js | 4 +-
 dist/echarts.simple.js  | 11727 +++--
 dist/echarts.simple.js.map  | 2 +-
 dist/echarts.simple.min.js  | 4 +-
 package-lock.json   | 8 +-
 package.json| 4 +-
 src/core/echarts.ts | 4 +-
 src/label/installLabelLayout.ts |20 +
 src/label/sectorLabel.ts|20 +
 17 files changed, 50780 insertions(+), 45660 deletions(-)

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



[echarts] 01/01: Merge pull request #15619 from apache/release-dev

2021-08-28 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

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

commit 41b7769648333d0a1da1101ebebfc9174d618863
Merge: 5fb2fab fd9bf4a
Author: sushuang 
AuthorDate: Sat Aug 28 17:40:27 2021 +0800

Merge pull request #15619 from apache/release-dev

release 5.2.0

 dist/echarts.common.js  | 12552 ++---
 dist/echarts.common.js.map  | 2 +-
 dist/echarts.common.min.js  | 4 +-
 dist/echarts.esm.js | 36040 +++--
 dist/echarts.esm.js.map | 2 +-
 dist/echarts.esm.min.js | 4 +-
 dist/echarts.js | 36041 --
 dist/echarts.js.map | 2 +-
 dist/echarts.min.js | 4 +-
 dist/echarts.simple.js  | 11727 +++--
 dist/echarts.simple.js.map  | 2 +-
 dist/echarts.simple.min.js  | 4 +-
 package-lock.json   | 8 +-
 package.json| 4 +-
 src/core/echarts.ts | 4 +-
 src/label/installLabelLayout.ts |20 +
 src/label/sectorLabel.ts|20 +
 17 files changed, 50780 insertions(+), 45660 deletions(-)

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



[GitHub] [echarts] echarts-bot[bot] commented on pull request #15619: release 5.2.0

2021-08-28 Thread GitBox


echarts-bot[bot] commented on pull request #15619:
URL: https://github.com/apache/echarts/pull/15619#issuecomment-907601478


   Congratulations! Your PR has been merged. Thanks for your contribution! 👍


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[echarts] tag 5.2.0-rc.1 created (now 41b7769)

2021-08-28 Thread sushuang
This is an automated email from the ASF dual-hosted git repository.

sushuang pushed a change to tag 5.2.0-rc.1
in repository https://gitbox.apache.org/repos/asf/echarts.git.


  at 41b7769  (commit)
No new revisions were added by this update.

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



[echarts-handbook] branch master updated: add 5.2.0 en translation

2021-08-28 Thread shenyi
This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
 new ead87fe  add 5.2.0 en translation
ead87fe is described below

commit ead87fe4833683f1b99591b404eeff6bf07868c6
Author: pissang 
AuthorDate: Sat Aug 28 18:16:20 2021 +0800

add 5.2.0 en translation
---
 contents/en/basics/release-note/5-2-0.md | 517 +++
 contents/en/posts.yml|   1 -
 contents/zh/basics/release-note/5-2-0.md |  10 +-
 3 files changed, 522 insertions(+), 6 deletions(-)

diff --git a/contents/en/basics/release-note/5-2-0.md 
b/contents/en/basics/release-note/5-2-0.md
index e69de29..d0ded9d 100644
--- a/contents/en/basics/release-note/5-2-0.md
+++ b/contents/en/basics/release-note/5-2-0.md
@@ -0,0 +1,517 @@
+# What's New in Apache ECharts 5.2.0
+
+## Universal Transition
+
+Natural and smooth transition animations have been an important feature in 
Apache ECharts. By avoiding abrupt changes from data update, it not only 
improves the visual effect, but also provides the possibility to express the 
association and evolution of data. Therefore, in 5.2.0, we have further 
enhanced this animation capability. Next, we will see how this **Universal 
Transition** adds expressiveness and narrative power to the chart.
+
+In previous versions, transition animations had certain limitations: they 
could only be used for the position, size of the same shape, and they could 
only work on the same type of series. For example, the following example 
reflects the change in data percent through the change in sector shape in a pie 
chart.
+
+```js live {layout: 'lr'}
+function makeRandomData() {
+  return [
+{
+  value: Math.random(),
+  name: 'A'
+},
+{
+  value: Math.random(),
+  name: 'B'
+},
+{
+  value: Math.random(),
+  name: 'C'
+}
+  ];
+}
+option = {
+  series: [
+{
+  type: 'pie',
+  radius: [0, '50%'],
+  data: makeRandomData()
+}
+  ]
+};
+
+setInterval(() => {
+  myChart.setOption({
+series: {
+  data: makeRandomData()
+}
+  });
+}, 2000);
+```
+
+And starting with 5.2.0, we introduced universal transition, a more powerful 
animation feature. With that, transitions are no longer limited to between 
series of the same type. Now, we can use this cross-series morphing to animate 
between any type of series and any type of shapes.
+
+How cool would this be? Let's have a look!
+
+### Morphing transition across series
+
+With `universalTransition: true` set to enable universion transition feature, 
switching from pie charts to bar charts, or from bar charts to scatter charts, 
or even between more complex charts like Sunburst and Treemap, can be morphed 
naturally.
+
+As follows, switching between a pie chart and a bar chart.
+
+```js live {layout: 'bt'}
+const dataset = {
+  dimensions: ['name', 'score'],
+  source: [
+['Hannah Krause', 314],
+['Zhao Qian', 351],
+['Jasmin Krause ', 287],
+['Li Lei', 219],
+['Karle Neumann', 253],
+['Mia Neumann', 165],
+['Böhm Fuchs', 318],
+['Han Meimei', 366]
+  ]
+};
+const pieOption = {
+  dataset: [dataset],
+  series: [
+{
+  type: 'pie',
+  // associate the series to be animated by id
+  id: 'Score',
+  radius: [0, '50%'],
+  universalTransition: true,
+  animationDurationUpdate: 1000
+}
+  ]
+};
+const barOption = {
+  dataset: [dataset],
+  xAxis: {
+type: 'category'
+  },
+  yAxis: {},
+  series: [
+{
+  type: 'bar',
+  // associate the series to be animated by id
+  id: 'Score',
+  // Each data will have a different color
+  colorBy: 'data',
+  encode: { x: 'name', y: 'score' },
+  universalTransition: true,
+  animationDurationUpdate: 1000
+}
+  ]
+};
+
+option = barOption;
+
+setInterval(() => {
+  option = option === pieOption ? barOption : pieOption;
+  // Use the notMerge form to remove the axes
+  myChart.setOption(option, true);
+}, 2000);
+```
+
+More transitions between common charts.
+
+![](images/5-2-0/universal-transition.gif)
+
+Such transitions are no longer limited to just the basic line, bar, and pie 
charts, but also between bars and maps:
+
+![](images/5-2-0/universal-transition-2.gif)
+
+or between Sunburst and Treemap, or even between very flexible custom series 
can be transitions.
+
+![](images/5-2-0/universal-transition-3.gif)
+
+> Note that you need to configure the series ids to ensure that there is a 
one-to-one correspondence between the series that need to be animated for the 
transition.
+
+### Data split/merge animations
+
+In addition to the common update of data values, sometimes we also encounter 
data aggregation, drill-down and other updates after interactions, when we can 
not directly apply one-to-one transitions, but need to use mor

[echarts-handbook] branch gh-pages updated (4f2550b -> db572ec)

2021-08-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git.


 discard 4f2550b  Deploying to gh-pages from @ 
apache/echarts-handbook@b7bf288eb87180d7606d755d6ecfd3a9202c05ac 🚀
 new db572ec  Deploying to gh-pages from @ 
apache/echarts-handbook@ead87fe4833683f1b99591b404eeff6bf07868c6 🚀

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4f2550b)
\
 N -- N -- N   refs/heads/gh-pages (db572ec)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 docs/200.html  |   4 +-
 docs/_nuxt/{98946d9.js => 04f61cb.js}  |   2 +-
 docs/_nuxt/js/1bffaea10791cad7b0cd.js  |   1 +
 ...b382e83ff282f421.js => 27eff4d6a1432b2bc844.js} |   2 +-
 docs/_nuxt/js/74ec854779a322cf731b.js  |   1 +
 docs/_nuxt/js/9b579c53121cd8ffb657.js  |   1 -
 docs/_nuxt/js/b3f51ee3805493dcbbe5.js  |   1 +
 docs/_nuxt/js/dde3692291dfba9fb6b9.js  |   1 -
 docs/_nuxt/js/f1c84086940933bcd1e2.js  |   1 -
 .../chart-types/bar/bar-race/index.html|   6 +-
 .../chart-types/bar/basic-bar/index.html   |   6 +-
 .../chart-types/bar/stacked-bar/index.html |   6 +-
 .../chart-types/bar/waterfall/index.html   |   6 +-
 .../chart-types/line/area-line/index.html  |   6 +-
 .../chart-types/line/basic-line/index.html |   6 +-
 .../chart-types/line/smooth-line/index.html|   6 +-
 .../chart-types/line/stacked-line/index.html   |   6 +-
 .../chart-types/line/step-line/index.html  |   6 +-
 .../chart-types/pie/basic-pie/index.html   |   6 +-
 .../chart-types/pie/doughnut/index.html|   6 +-
 .../en/application/chart-types/pie/rose/index.html |   6 +-
 .../chart-types/scatter/basic-scatter/index.html   |   6 +-
 .../application/cross-platform/server/index.html   |   4 +-
 docs/en/application/data/dynamic-data/index.html   |   6 +-
 docs/en/application/interaction/drag/index.html|   6 +-
 docs/en/application/label/rich-text/index.html |   6 +-
 docs/en/basics/download/index.html |   4 +-
 docs/en/basics/help/index.html |   4 +-
 docs/en/basics/import/index.html   |   6 +-
 docs/en/basics/inspiration/index.html  |   4 +-
 docs/en/basics/release-note/5-2-0/index.html   | 600 +
 docs/en/basics/release-note/v5-feature/index.html  |   6 +-
 .../release-note/v5-upgrade-guide/index.html   |   6 +-
 docs/en/best-practice/aria/index.html  |   6 +-
 docs/en/best-practice/canvas-vs-svg/index.html |   6 +-
 docs/en/concepts/axis/index.html   |   6 +-
 docs/en/concepts/chart-size/index.html |   6 +-
 docs/en/concepts/data-transform/index.html |   6 +-
 docs/en/concepts/dataset/index.html|   6 +-
 docs/en/concepts/event/index.html  |   6 +-
 docs/en/concepts/legend/index.html |   6 +-
 docs/en/concepts/style/index.html  |   6 +-
 docs/en/concepts/visual-map/index.html |   6 +-
 docs/en/get-started/index.html |   6 +-
 docs/en/index.html |   4 +-
 docs/en/meta/edit-guide/index.html |   6 +-
 docs/index.html|   4 +-
 .../chart-types/bar/bar-race/index.html|   4 +-
 .../chart-types/bar/basic-bar/index.html   |   4 +-
 .../chart-types/bar/stacked-bar/index.html |   4 +-
 .../chart-types/bar/waterfall/index.html   |   4 +-
 .../chart-types/line/area-line/index.html  |   4 +-
 .../chart-types/line/basic-line/index.html |   4 +-
 .../chart-types/line/smooth-line/index.html|   4 +-
 .../chart-types/line/stacked-line/index.html   |   4 +-
 .../chart-types/line/step-line/index.html  |   4 +-
 .../chart-types/pie/basic-pie/index.html   |   4 +-
 .../chart-types/pie/doughnut/index.html|   4 +-
 .../zh/application/chart-types/pie/rose/index.html |   4 +-
 .../chart-types/sca

[GitHub] [echarts] sebbASF opened a new issue #15620: Site defaults to Chinese

2021-08-28 Thread GitBox


sebbASF opened a new issue #15620:
URL: https://github.com/apache/echarts/issues/15620


   ### Version
   Current
   
   ### Steps to reproduce
   Browse to https://echarts.apache.org/
   
   ### What is expected?
   Site should redirect  based on request header such as accept-language
   
   ### What is actually happening?
   Unconditional redirect to Chinese site
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [echarts] echarts-bot[bot] commented on issue #15620: Site defaults to Chinese

2021-08-28 Thread GitBox


echarts-bot[bot] commented on issue #15620:
URL: https://github.com/apache/echarts/issues/15620#issuecomment-907622083


   Hi! We've received your issue and please be patient to get responded. 🎉
   The average response time is expected to be within one day for weekdays.
   
   In the meanwhile, please make sure that it contains **a minimum reproducible 
demo** and necessary **images** to illustrate. Otherwise, our committers will 
ask you to do so.
   
   *A minimum reproducible demo* should contain as little data and components 
as possible but can still illustrate your problem. This is the best way for us 
to reproduce it and solve the problem faster.
   
   You may also check out the [API](http://echarts.apache.org/api.html) and 
[chart option](http://echarts.apache.org/option.html) to get the answer.
   
   If you don't get helped for a long time (over a week) or have an urgent 
question to ask, you may also send an email to d...@echarts.apache.org. Please 
attach the issue link if it's a technical question.
   
   If you are interested in the project, you may also subscribe to our [mailing 
list](https://echarts.apache.org/en/maillist.html).
   
   Have a nice day! 🍵


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



svn commit: r49662 - in /dev/echarts/5.2.0-rc.1: ./ RELEASE_NOTE.txt apache-echarts-5.2.0-rc.1-src.zip apache-echarts-5.2.0-rc.1-src.zip.asc apache-echarts-5.2.0-rc.1-src.zip.sha512

2021-08-28 Thread sushuang
Author: sushuang
Date: Sat Aug 28 14:18:55 2021
New Revision: 49662

Log:
prerelease

Added:
dev/echarts/5.2.0-rc.1/
dev/echarts/5.2.0-rc.1/RELEASE_NOTE.txt
dev/echarts/5.2.0-rc.1/apache-echarts-5.2.0-rc.1-src.zip   (with props)
dev/echarts/5.2.0-rc.1/apache-echarts-5.2.0-rc.1-src.zip.asc
dev/echarts/5.2.0-rc.1/apache-echarts-5.2.0-rc.1-src.zip.sha512

Added: dev/echarts/5.2.0-rc.1/RELEASE_NOTE.txt
==
--- dev/echarts/5.2.0-rc.1/RELEASE_NOTE.txt (added)
+++ dev/echarts/5.2.0-rc.1/RELEASE_NOTE.txt Sat Aug 28 14:18:55 2021
@@ -0,0 +1,58 @@
+## 5.2.0
+
+## v5.2.0
+
+ Break Changes
+
++ [Fix] [pie] Negative value will be filtered 
[#15095](https://github.com/apache/echarts/issues/15095) 
([ssthouse](https://github.com/ssthouse))
+
+ All Changes
+
++ **[Feature] Introduce universal transition to all series. 
[#15208](https://github.com/apache/echarts/issues/15208) 
([pissang](https://github.com/pissang))**
++ [Feature] [color] Add `series.colorBy` 
[#13788](https://github.com/apache/echarts/issues/13788) 
([Ovilia](https://github.com/Ovilia))
++ [Feature] [label] Support sector label positions for polar bars 
[#774](https://github.com/ecomfe/zrender/issues/774) 
([Ovilia](https://github.com/Ovilia))
++ [Feature] [effectScatter] Add `rippleEffect.number` 
[#15335](https://github.com/apache/echarts/issues/15335) 
([plainheart](https://github.com/plainheart))
++ [Feature] [gauge] Add `pointer.showAbove` to allow pointer show above the 
title and details. [#15337](https://github.com/apache/echarts/issues/15337) 
([AmosChenYQ](https://github.com/AmosChenYQ)) 
[#15326](https://github.com/apache/echarts/issues/15326) 
([susiwen8](https://github.com/susiwen8))
++ [Feature] [gauge] Add `pointer.showAbove` to allow pointer show above the 
title and details. [#15337](https://github.com/apache/echarts/issues/15337) 
([AmosChenYQ](https://github.com/AmosChenYQ)) 
[#15326](https://github.com/apache/echarts/issues/15326) 
([susiwen8](https://github.com/susiwen8))
++ [Feature] [emphasis] `emphasis.color` can use `'inherit'` to be not 
higlighted. [#15172](https://github.com/apache/echarts/issues/15172) 
([Foreverwzh](https://github.com/Foreverwzh))
++ [Feature] [pie] Display an empty cicle when pie don't have value. 
[#15095](https://github.com/apache/echarts/issues/15095) 
([ssthouse](https://github.com/ssthouse))
++ [Fix] [dataset] Fix dataset performance drops signifcantly on high 
dimensions data. [#15355](https://github.com/apache/echarts/issues/15355) 
([pissang](https://github.com/pissang))
++ [Fix] [axis] Optimize format in time axis 
[#15465](https://github.com/apache/echarts/issues/15465) 
([leavest](https://github.com/leavest))  
[#15434](https://github.com/apache/echarts/issues/15434) 
([zhiyuc123](https://github.com/zhiyuc123))
++ [Fix] [custom] Optimize text font compatibility with older versions 
[#15454](https://github.com/apache/echarts/issues/15454) 
([AmosChenYQ](https://github.com/AmosChenYQ))
++ [Fix] [memory] Optimize memory when chart instance is still hold after 
dispose [#15417](https://github.com/apache/echarts/issues/15417) 
([pissang](https://github.com/pissang))
++ [Fix] [line] Optimize color gradient when having infinite value. 
[#15416](https://github.com/apache/echarts/issues/15416) 
([plainheart](https://github.com/plainheart))
++ [Fix] [date] Optimize date parsing 
[#15410](https://github.com/apache/echarts/issues/15410) 
([quillblue](https://github.com/quillblue))
++ [Fix] [line] Fix render bug. 
[#788](https://github.com/ecomfe/zrender/issues/788) 
([pissang](https://github.com/pissang))
++ [Fix] [candlestick] Fix style lost after update 
[#15368](https://github.com/apache/echarts/issues/15368) 
([pissang](https://github.com/pissang))
++ [Fix] [sankey] Gradient should follow orient. 
[#15363](https://github.com/apache/echarts/issues/15363) 
([susiwen8](https://github.com/susiwen8))
++ [Fix] [tooltip] Fix tooltip formatter doesn't renders HTMLElement if tooltip 
position is specified. [#15313](https://github.com/apache/echarts/issues/15313) 
([plainheart](https://github.com/plainheart))
++ [Fix] [tooltip] Tooltip should clear content when formatter returns null. 
[#15313](https://github.com/apache/echarts/issues/15313) 
([plainheart](https://github.com/plainheart))
++ [Fix] [bar] Set label to be inside when position is `'middle'` 
[#15309](https://github.com/apache/echarts/issues/15309) 
([Ovilia](https://github.com/Ovilia))
++ [Fix] [marker] Fix 'clampData' undefined error in 'getMarkerPosition'  
[#15297](https://github.com/apache/echarts/issues/15297) 
([AmosChenYQ](https://github.com/AmosChenYQ))
++ [Fix] [treemap] Fix old nodes not removed when disabled animation 
[#15283](https://github.com/apache/echarts/issues/15283) 
([villebro](https://github.com/villebro))
++ [Fix] [tree] Fix edge may not removed when update data 
[#15251](https://github.com/apache/echarts/issues/15251) 
([ssthous

[GitHub] [echarts] susiwen8 closed issue #9560: containLabel:true, 右边的文字还是被遮挡了

2021-08-28 Thread GitBox


susiwen8 closed issue #9560:
URL: https://github.com/apache/echarts/issues/9560


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [echarts] susiwen8 commented on issue #9560: containLabel:true, 右边的文字还是被遮挡了

2021-08-28 Thread GitBox


susiwen8 commented on issue #9560:
URL: https://github.com/apache/echarts/issues/9560#issuecomment-907649067


   Let's track in #15562


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [echarts] pissang commented on issue #15620: Site defaults to Chinese

2021-08-28 Thread GitBox


pissang commented on issue #15620:
URL: https://github.com/apache/echarts/issues/15620#issuecomment-907710414


   We are using `navigator.userLanguage` to redirect. Do you mind giving us 
your value?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [echarts] pissang edited a comment on issue #15620: Site defaults to Chinese

2021-08-28 Thread GitBox


pissang edited a comment on issue #15620:
URL: https://github.com/apache/echarts/issues/15620#issuecomment-907710414


   We are using `navigator.language` and `navigator.userLanguage` to redirect. 
Do you mind giving us your value?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[echarts-doc] branch master updated: add chinese changelog

2021-08-28 Thread shenyi
This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-doc.git


The following commit(s) were added to refs/heads/master by this push:
 new a3dcd95  add chinese changelog
a3dcd95 is described below

commit a3dcd95b3f879356c4ee18e52249e613d8906508
Author: pissang 
AuthorDate: Sun Aug 29 10:14:08 2021 +0800

add chinese changelog
---
 en/changelog.md |  9 -
 zh/changelog.md | 58 -
 2 files changed, 61 insertions(+), 6 deletions(-)

diff --git a/en/changelog.md b/en/changelog.md
index 65ef572..b9816bf 100644
--- a/en/changelog.md
+++ b/en/changelog.md
@@ -11,12 +11,11 @@
 + [Feature] [label] Support sector label positions for polar bars 
[#774](https://github.com/ecomfe/zrender/issues/774) 
([Ovilia](https://github.com/Ovilia))
 + [Feature] [effectScatter] Add `rippleEffect.number` 
[#15335](https://github.com/apache/echarts/issues/15335) 
([plainheart](https://github.com/plainheart))
 + [Feature] [gauge] Add `pointer.showAbove` to allow pointer show above the 
title and details. [#15337](https://github.com/apache/echarts/issues/15337) 
([AmosChenYQ](https://github.com/AmosChenYQ)) 
[#15326](https://github.com/apache/echarts/issues/15326) 
([susiwen8](https://github.com/susiwen8))
-+ [Feature] [gauge] Add `pointer.showAbove` to allow pointer show above the 
title and details. [#15337](https://github.com/apache/echarts/issues/15337) 
([AmosChenYQ](https://github.com/AmosChenYQ)) 
[#15326](https://github.com/apache/echarts/issues/15326) 
([susiwen8](https://github.com/susiwen8))
 + [Feature] [emphasis] `emphasis.color` can use `'inherit'` to be not 
higlighted. [#15172](https://github.com/apache/echarts/issues/15172) 
([Foreverwzh](https://github.com/Foreverwzh))
 + [Feature] [pie] Display an empty cicle when pie don't have value. 
[#15095](https://github.com/apache/echarts/issues/15095) 
([ssthouse](https://github.com/ssthouse))
 + [Fix] [dataset] Fix dataset performance drops signifcantly on high 
dimensions data. [#15355](https://github.com/apache/echarts/issues/15355) 
([pissang](https://github.com/pissang))
 + [Fix] [axis] Optimize format in time axis 
[#15465](https://github.com/apache/echarts/issues/15465) 
([leavest](https://github.com/leavest))  
[#15434](https://github.com/apache/echarts/issues/15434) 
([zhiyuc123](https://github.com/zhiyuc123))
-+ [Fix] [custom] Optimize text font compatibility with older versions 
[#15454](https://github.com/apache/echarts/issues/15454) 
([AmosChenYQ](https://github.com/AmosChenYQ))
++ [Fix] [custom] Optimize text font compatibility with legacy code. 
[#15454](https://github.com/apache/echarts/issues/15454) 
([AmosChenYQ](https://github.com/AmosChenYQ))
 + [Fix] [memory] Optimize memory when chart instance is still hold after 
dispose [#15417](https://github.com/apache/echarts/issues/15417) 
([pissang](https://github.com/pissang))
 + [Fix] [line] Optimize color gradient when having infinite value. 
[#15416](https://github.com/apache/echarts/issues/15416) 
([plainheart](https://github.com/plainheart))
 + [Fix] [date] Optimize date parsing 
[#15410](https://github.com/apache/echarts/issues/15410) 
([quillblue](https://github.com/quillblue))
@@ -37,7 +36,7 @@
 + [Fix] [legend] Fix `text.lineHeight` not work 
[#773](https://github.com/ecomfe/zrender/issues/773) 
([ssthouse](https://github.com/ssthouse))
 + [Fix] [pie] Change the default `borderJoin` to `round`. 
[#15145](https://github.com/apache/echarts/issues/15145) 
([plainheart](https://github.com/plainheart))
 + [Fix] [radar] Change the default `borderJoin` to `round`. 
[#15381](https://github.com/apache/echarts/issues/15381) 
([Ovilia](https://github.com/Ovilia))
-+ [Fix] [treemap]: Fix `label.show` set to `false` will throw error 
[#15141](https://github.com/apache/echarts/issues/15141) 
([susiwen8](https://github.com/susiwen8))
++ [Fix] [treemap] Fix `label.show` set to `false` will throw error 
[#15141](https://github.com/apache/echarts/issues/15141) 
([susiwen8](https://github.com/susiwen8))
 + [Fix] [pictorialBar] Fix pictorialBar zero value label display. 
[#15132](https://github.com/apache/echarts/issues/15132) 
([ssthouse](https://github.com/ssthouse))
 + [Fix] [lines] Fix lines can't be cleared by chart.clear() 
[#15088](https://github.com/apache/echarts/issues/15088) 
([plainheart](https://github.com/plainheart))
 + [Fix] [endLabel] Fix endLabel not display when only set `emphasis.show` to 
`true`.  [#15072](https://github.com/apache/echarts/issues/15072) 
([Ovilia](https://github.com/Ovilia))
@@ -50,10 +49,10 @@
 + [Fix] [tooltip] Tooltip arrow will follow borderWidth. 
[#14393](https://github.com/apache/echarts/issues/14393) 
([g7i](https://github.com/g7i))
 + [Fix] [geo] Fix geo switch from hidden to show fail. 
[#15361](https://github.com/apache/echarts/issues/15361) 
([pissang](https://github.com/pissang))
 + [Fix] [ty

[echarts-handbook] branch master updated: add chinese changelog

2021-08-28 Thread shenyi
This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
 new 0f0473f  add chinese changelog
0f0473f is described below

commit 0f0473f1e32a07e5cb0a27a15df208a4cae27c32
Author: pissang 
AuthorDate: Sun Aug 29 10:14:01 2021 +0800

add chinese changelog
---
 contents/en/basics/release-note/5-2-0.md |  9 +++---
 contents/zh/basics/release-note/5-2-0.md | 54 
 2 files changed, 58 insertions(+), 5 deletions(-)

diff --git a/contents/en/basics/release-note/5-2-0.md 
b/contents/en/basics/release-note/5-2-0.md
index d0ded9d..8812437 100644
--- a/contents/en/basics/release-note/5-2-0.md
+++ b/contents/en/basics/release-note/5-2-0.md
@@ -472,12 +472,11 @@ If you're interested in what's next for Apache ECharts, 
you can also follow our
 - [Feature][label] Support sector label positions for polar bars 
[#774](https://github.com/ecomfe/zrender/issues/774) 
([Ovilia](https://github.com/Ovilia))
 - [Feature][effectscatter] Add `rippleEffect.number` 
[#15335](https://github.com/apache/echarts/issues/15335) 
([plainheart](https://github.com/plainheart))
 - [Feature][gauge] Add `pointer.showAbove` to allow pointer show above the 
title and details. [#15337](https://github.com/apache/echarts/issues/15337) 
([AmosChenYQ](https://github.com/AmosChenYQ)) 
[#15326](https://github.com/apache/echarts/issues/15326) 
([susiwen8](https://github.com/susiwen8))
-- [Feature][gauge] Add `pointer.showAbove` to allow pointer show above the 
title and details. [#15337](https://github.com/apache/echarts/issues/15337) 
([AmosChenYQ](https://github.com/AmosChenYQ)) 
[#15326](https://github.com/apache/echarts/issues/15326) 
([susiwen8](https://github.com/susiwen8))
 - [Feature][emphasis] `emphasis.color` can use `'inherit'` to be not 
higlighted. [#15172](https://github.com/apache/echarts/issues/15172) 
([Foreverwzh](https://github.com/Foreverwzh))
 - [Feature][pie] Display an empty cicle when pie don't have value. 
[#15095](https://github.com/apache/echarts/issues/15095) 
([ssthouse](https://github.com/ssthouse))
 - [Fix][dataset] Fix dataset performance drops signifcantly on high dimensions 
data. [#15355](https://github.com/apache/echarts/issues/15355) 
([pissang](https://github.com/pissang))
 - [Fix][axis] Optimize format in time axis 
[#15465](https://github.com/apache/echarts/issues/15465) 
([leavest](https://github.com/leavest)) 
[#15434](https://github.com/apache/echarts/issues/15434) 
([zhiyuc123](https://github.com/zhiyuc123))
-- [Fix][custom] Optimize text font compatibility with older versions 
[#15454](https://github.com/apache/echarts/issues/15454) 
([AmosChenYQ](https://github.com/AmosChenYQ))
+- [Fix][custom] Optimize text font compatibility with legacy code. 
[#15454](https://github.com/apache/echarts/issues/15454) 
([AmosChenYQ](https://github.com/AmosChenYQ))
 - [Fix][memory] Optimize memory when chart instance is still hold after 
dispose [#15417](https://github.com/apache/echarts/issues/15417) 
([pissang](https://github.com/pissang))
 - [Fix][line] Optimize color gradient when having infinite value. 
[#15416](https://github.com/apache/echarts/issues/15416) 
([plainheart](https://github.com/plainheart))
 - [Fix][date] Optimize date parsing 
[#15410](https://github.com/apache/echarts/issues/15410) 
([quillblue](https://github.com/quillblue))
@@ -498,7 +497,7 @@ If you're interested in what's next for Apache ECharts, you 
can also follow our
 - [Fix][legend] Fix `text.lineHeight` not work 
[#773](https://github.com/ecomfe/zrender/issues/773) 
([ssthouse](https://github.com/ssthouse))
 - [Fix][pie] Change the default `borderJoin` to `round`. 
[#15145](https://github.com/apache/echarts/issues/15145) 
([plainheart](https://github.com/plainheart))
 - [Fix][radar] Change the default `borderJoin` to `round`. 
[#15381](https://github.com/apache/echarts/issues/15381) 
([Ovilia](https://github.com/Ovilia))
-- [Fix][treemap]: Fix `label.show` set to `false` will throw error 
[#15141](https://github.com/apache/echarts/issues/15141) 
([susiwen8](https://github.com/susiwen8))
+- [Fix][treemap] Fix `label.show` set to `false` will throw error 
[#15141](https://github.com/apache/echarts/issues/15141) 
([susiwen8](https://github.com/susiwen8))
 - [Fix][pictorialbar] Fix pictorialBar zero value label display. 
[#15132](https://github.com/apache/echarts/issues/15132) 
([ssthouse](https://github.com/ssthouse))
 - [Fix][lines] Fix lines can't be cleared by chart.clear() 
[#15088](https://github.com/apache/echarts/issues/15088) 
([plainheart](https://github.com/plainheart))
 - [Fix][endlabel] Fix endLabel not display when only set `emphasis.show` to 
`true`. [#15072](https://github.com/apache/echarts/issues/15072) 
([Ovilia](https://github.com/Ovilia))
@@ -511,7 +510,7 @@ If you're interested in what's next for Apach

[echarts-handbook] branch gh-pages updated (db572ec -> 4918b77)

2021-08-28 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git.


 discard db572ec  Deploying to gh-pages from @ 
apache/echarts-handbook@ead87fe4833683f1b99591b404eeff6bf07868c6 🚀
 new 4918b77  Deploying to gh-pages from @ 
apache/echarts-handbook@0f0473f1e32a07e5cb0a27a15df208a4cae27c32 🚀

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (db572ec)
\
 N -- N -- N   refs/heads/gh-pages (4918b77)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 docs/200.html  | 4 ++--
 docs/_nuxt/{04f61cb.js => 9c7bbb9.js}  | 2 +-
 docs/_nuxt/js/{74ec854779a322cf731b.js => 7a3fd35de7b63770b2f2.js} | 2 +-
 docs/_nuxt/js/{1bffaea10791cad7b0cd.js => a5510086a7f2fb99e086.js} | 2 +-
 docs/en/application/chart-types/bar/bar-race/index.html| 4 ++--
 docs/en/application/chart-types/bar/basic-bar/index.html   | 4 ++--
 docs/en/application/chart-types/bar/stacked-bar/index.html | 4 ++--
 docs/en/application/chart-types/bar/waterfall/index.html   | 4 ++--
 docs/en/application/chart-types/line/area-line/index.html  | 4 ++--
 docs/en/application/chart-types/line/basic-line/index.html | 4 ++--
 docs/en/application/chart-types/line/smooth-line/index.html| 4 ++--
 docs/en/application/chart-types/line/stacked-line/index.html   | 4 ++--
 docs/en/application/chart-types/line/step-line/index.html  | 4 ++--
 docs/en/application/chart-types/pie/basic-pie/index.html   | 4 ++--
 docs/en/application/chart-types/pie/doughnut/index.html| 4 ++--
 docs/en/application/chart-types/pie/rose/index.html| 4 ++--
 docs/en/application/chart-types/scatter/basic-scatter/index.html   | 4 ++--
 docs/en/application/cross-platform/server/index.html   | 4 ++--
 docs/en/application/data/dynamic-data/index.html   | 4 ++--
 docs/en/application/interaction/drag/index.html| 4 ++--
 docs/en/application/label/rich-text/index.html | 4 ++--
 docs/en/basics/download/index.html | 4 ++--
 docs/en/basics/help/index.html | 4 ++--
 docs/en/basics/import/index.html   | 4 ++--
 docs/en/basics/inspiration/index.html  | 4 ++--
 docs/en/basics/release-note/5-2-0/index.html   | 4 ++--
 docs/en/basics/release-note/v5-feature/index.html  | 4 ++--
 docs/en/basics/release-note/v5-upgrade-guide/index.html| 4 ++--
 docs/en/best-practice/aria/index.html  | 4 ++--
 docs/en/best-practice/canvas-vs-svg/index.html | 4 ++--
 docs/en/concepts/axis/index.html   | 4 ++--
 docs/en/concepts/chart-size/index.html | 4 ++--
 docs/en/concepts/data-transform/index.html | 4 ++--
 docs/en/concepts/dataset/index.html| 4 ++--
 docs/en/concepts/event/index.html  | 4 ++--
 docs/en/concepts/legend/index.html | 4 ++--
 docs/en/concepts/style/index.html  | 4 ++--
 docs/en/concepts/visual-map/index.html | 4 ++--
 docs/en/get-started/index.html | 4 ++--
 docs/en/index.html | 4 ++--
 docs/en/meta/edit-guide/index.html | 4 ++--
 docs/index.html| 4 ++--
 docs/zh/application/chart-types/bar/bar-race/index.html| 4 ++--
 docs/zh/application/chart-types/bar/basic-bar/index.html   | 4 ++--
 docs/zh/application/chart-types/bar/stacked-bar/index.html | 4 ++--
 docs/zh/application/chart-types/bar/waterfall/index.html   | 4 ++--
 docs/zh/application/chart-types/line/area-line/index.html  | 4 ++--
 docs/zh/applicatio

[GitHub] [echarts] plainheart removed a comment on issue #14342: Vue3项目中使用折线图出现tooltip不显示

2021-08-28 Thread GitBox


plainheart removed a comment on issue #14342:
URL: https://github.com/apache/echarts/issues/14342#issuecomment-833998307


   @susiwen8 拿issue的例子来说,似乎只有 `trigger: axis` 时才会有问题,`trigger: item` 
则不会,还需要进一步看下。


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [echarts] echarts-bot[bot] closed issue #15276: How to differ the areaColor of different areas when emphasised?(当地区被emphasis怎么设置不同颜色)

2021-08-28 Thread GitBox


echarts-bot[bot] closed issue #15276:
URL: https://github.com/apache/echarts/issues/15276


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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