[GitHub] [echarts] dd1994 commented on issue #15658: scatter 图在特定情况下有 bug: 鼠标 hover 时会夸张的放大

2021-09-01 Thread GitBox


dd1994 commented on issue #15658:
URL: https://github.com/apache/echarts/issues/15658#issuecomment-911198877


   ### 截图如下
   
   https://user-images.githubusercontent.com/4121510/131786608-077cbcd9-1176-419a-9745-9590cd26e499.png;>


-- 
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] dd1994 opened a new issue #15658: scatter 图在特定情况下有 bug: 鼠标 hover 时会夸张的放大

2021-09-01 Thread GitBox


dd1994 opened a new issue #15658:
URL: https://github.com/apache/echarts/issues/15658


   ### Version
   5.2.0
   
   ### Steps to reproduce
   将下列代码粘贴到 https://echarts.apache.org/examples/zh/editor.html?c=line-simple , 
鼠标 hover 第一个图表的柱子上时即可复现。
   
   ```js
   var dataA = [] ;
   var dataB = [] ;
   var dataC = [] ;
   var dataD = [] ;
   var xAxisData = [
   '香蕉',
   '橘子',
   '猕猴桃',
   '火龙果',
   '橙子',
   '桃子',
   '哈密瓜',
   '西瓜',
   '榴莲',
   '杨桃',
   '梨',
   '葡萄',
   '丑橘',
   '山竹',
   ]
   
   for (var i = 0; i < 14; i++) {
   dataA.push((Math.random() * 1500).toFixed(2))
   dataB.push((Math.random() * 2000).toFixed(2))
   dataC.push((Math.random() * 0.8).toFixed(2))
   dataD.push(-Math.random().toFixed(2))
   }
   
   
   option = {
   animation: false,
   title: {
   left: 'left',
   text: '品类营收分析'
   },
   legend: {
   top: 30,
   data: ['目标总营收', '实际营收','时间进度目标营收', '同比', '环比', '目标完成率']
   },
   tooltip: {
   trigger: 'axis',
   axisPointer: {
   type: 'cross'
   },
   position: function (pos, params, el, elRect, size) {
   var obj = {top: 10};
   obj[['left', 'right'][+(pos[0] < size.viewSize[0] / 2)]] = 
30;
   return obj;
   }
   },
   axisPointer: {
   link: [{
   xAxisIndex: [0, 1]
   }]
   },
   xAxis: [
   {
   type: 'category',
   data: xAxisData,
   axisTick: {show: false},
   axisLabel:{
   interval:0
   
   },
   axisPointer: {
   type: 'shadow',
   show: true,
   triggerTooltip: false,
   
   }
   }, 
   {
   type: 'category',
   gridIndex: 1,
   data: xAxisData,
   scale: true,
   // boundaryGap : false,
   splitLine: {show: false},
   axisLabel: {show: false},
   axisTick: {show: false},
   axisLine: { lineStyle: { color: '#777' } },
   // splitNumber: 20,
   // min: 'dataMin',
   // max: 'dataMax',
   axisPointer: {
   type: 'shadow',
   label: {show: false},
   triggerTooltip: false,
   handle: {
   show: true,
   margin: 30,
   color: '#B80C00'
   }
   }
   },
   {
   position: 'bottom',// 将分组x轴位置定至底部,不然默认在顶部
   offset: 55,// 向下偏移,使分组文字显示位置不与原x轴重叠
   axisLine: {
  show: true // 隐藏分组x轴的轴线
   },
   axisPointer: {
   show:false,
   },
   axisTick: {
   length: 20, // 延长刻度线做分组线 
   inside: false, // 使刻度线相对轴线在上面与原x轴相接,默认在轴线下方
   lineStyle: {color: 'red'},// 非必须,仅为了演示,明显标示出分组刻度线
   interval: function (index, value) {
 return index === 0 || index === 4 || index === 10// 
在0、5、6处各画一条刻度线
   }
   },
   axisLabel: {
   inside: true,// 使刻度名称相对轴线在上面与原x轴相接,默认在轴线下方
   interval: 0,// 强制显示全部刻度名
   formatter: function (val, index) {
   return ''
   }
   },
   data:xAxisData
   } 
   ],
   yAxis: [
   {
   scale: false,
   splitNumber: 5,
   splitLine: { show: false },
   axisTick: { show: false },
   axisPointer:{
   show:false,
   }
   }, 
   {
   scale: false,
   gridIndex: 1,
   splitNumber: 2,
   axisLabel: {show: false},
   axisLine: {show: false},
   axisTick: {show: false},
   splitLine: {show: false}
   },
   {
splitNumber: 5,
min: 0,
max: 1,
splitLine: { show: true },
axisPointer:{
   show:false,
   }
   }
   ],
   grid: [{
   left:50,
   right: 50,
   top: 110,
   height: 120
   }, {
   left: 50,
   right: 50,
   height: 40,
   top: 300
   }],
   series: [
   {
   name: '同比',
   type: 'bar',
   xAxisIndex: 1,
   yAxisIndex: 1,
   barWidth : 15,//柱图宽度
   itemStyle: {
   normal: { 
   color: '#5CD699',
   label: {
   show: true,  //开启显示
   position: 'top', //在上方显示
   textStyle: { //数值样式
   color: 'black',
   fontSize: 9
   }
   }
   },
   },
  
   

[GitHub] [echarts] echarts-bot[bot] commented on issue #15658: scatter 图在特定情况下有 bug: 鼠标 hover 时会夸张的放大

2021-09-01 Thread GitBox


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






-- 
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] flyaway22 closed issue #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


flyaway22 closed issue #15657:
URL: https://github.com/apache/echarts/issues/15657


   


-- 
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 #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


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


   I can't get this error from your project. Maybe some steps are missing?


-- 
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 #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


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


   I can't get this error from your 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] flyaway22 commented on issue #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


flyaway22 commented on issue #15657:
URL: https://github.com/apache/echarts/issues/15657#issuecomment-911173492


   > @flyaway22 Please provide a minimum reproducible demo for the issue either 
with https://codepen.io/Ovilia/pen/dyYWXWM , 
https://www.makeapie.com/editor.html or 
https://codesandbox.io/s/mystifying-bash-2uthz.
   > 
   > _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.
   
   https://codesandbox.io/s/proud-shadow-gbpme
   this is one of the chart that i used for my project. it was made using 
echart 4.8. Is there anything that's causing the error here? 


-- 
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] flyaway22 removed a comment on issue #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


flyaway22 removed a comment on issue #15657:
URL: https://github.com/apache/echarts/issues/15657#issuecomment-911169254


   > @flyaway22 Please provide a minimum reproducible demo for the issue either 
with https://codepen.io/Ovilia/pen/dyYWXWM , 
https://www.makeapie.com/editor.html or 
https://codesandbox.io/s/mystifying-bash-2uthz.
   > 
   > _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.
   
   https://codepen.io/Ovilia/pen/dyYWXWM 
   this is one of the chart that i use in the project, is there anything that's 
causing the error in the option?


-- 
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] flyaway22 commented on issue #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


flyaway22 commented on issue #15657:
URL: https://github.com/apache/echarts/issues/15657#issuecomment-911169254


   > @flyaway22 Please provide a minimum reproducible demo for the issue either 
with https://codepen.io/Ovilia/pen/dyYWXWM , 
https://www.makeapie.com/editor.html or 
https://codesandbox.io/s/mystifying-bash-2uthz.
   > 
   > _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.
   
   https://codepen.io/Ovilia/pen/dyYWXWM 
   this is one of the chart that i use in the project, is there anything that's 
causing the error in the option?


-- 
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 #15611: 最新的master版本的配置项series-line.markPoint.data. symbolOffset 还是无效。

2021-09-01 Thread GitBox


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


   


-- 
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 #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


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


   @flyaway22 Please provide a minimum reproducible demo for the issue either 
with https://codepen.io/Ovilia/pen/dyYWXWM , 
https://www.makeapie.com/editor.html or 
https://codesandbox.io/s/mystifying-bash-2uthz.
   
   *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.


-- 
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 #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


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


   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



[GitHub] [echarts] flyaway22 opened a new issue #15657: TypeError: Cannot read property 'useStyle' of undefined after upgrading from echart 4.8 to 5.x

2021-09-01 Thread GitBox


flyaway22 opened a new issue #15657:
URL: https://github.com/apache/echarts/issues/15657


   ### Version
   5.1.2
   
   ### Steps to reproduce
   No idea, so here's a screenshoot of the error
   
   https://imgur.com/keTUuUL
   
   ### What is expected?
   To be able to load my page
   
   ### What is actually happening?
   so, i tried upgrading echarts from v 4.8 to v 5.x in my project, but 
whenever i tried to start my project, i straightly get this error. I have no 
idea what caused this, and i have read the docs and guide on how to upgrade to 
v5, but still haven't find the solution or why this is happening. Any help will 
be appreciated. thank you!
   
   
   


-- 
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-handbook] branch gh-pages updated (fa94bbe -> 0485ced)

2021-09-01 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 fa94bbe  Deploying to gh-pages from @ 
apache/echarts-handbook@d5e45365fde6f6b815d7b913cd4a8c3837b6167e 
 new 0485ced  Deploying to gh-pages from @ 
apache/echarts-handbook@c13f170222332e3319496a7fe0f250fc71385ceb 

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   (fa94bbe)
\
 N -- N -- N   refs/heads/gh-pages (0485ced)

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/{4f9392d.js => c136e99.js}  | 2 +-
 docs/_nuxt/js/{4475e4015f9b5ef7efa9.js => 4207fd6502bce2fe0e71.js} | 2 +-
 docs/_nuxt/js/{4a761c0a963dcb7417e6.js => e303720dbeb0c926a800.js} | 2 +-
 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-practices/aria/index.html | 4 ++--
 docs/en/best-practices/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/how-to/chart-types/bar/bar-race/index.html | 4 ++--
 docs/en/how-to/chart-types/bar/basic-bar/index.html| 4 ++--
 docs/en/how-to/chart-types/bar/stacked-bar/index.html  | 4 ++--
 docs/en/how-to/chart-types/bar/waterfall/index.html| 4 ++--
 docs/en/how-to/chart-types/line/area-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/line/basic-line/index.html  | 4 ++--
 docs/en/how-to/chart-types/line/smooth-line/index.html | 4 ++--
 docs/en/how-to/chart-types/line/stacked-line/index.html| 4 ++--
 docs/en/how-to/chart-types/line/step-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/pie/basic-pie/index.html| 4 ++--
 docs/en/how-to/chart-types/pie/doughnut/index.html | 4 ++--
 docs/en/how-to/chart-types/pie/rose/index.html | 4 ++--
 docs/en/how-to/chart-types/scatter/basic-scatter/index.html| 4 ++--
 docs/en/how-to/cross-platform/server/index.html| 4 ++--
 docs/en/how-to/data/dynamic-data/index.html| 4 ++--
 docs/en/how-to/interaction/drag/index.html | 4 ++--
 docs/en/how-to/label/rich-text/index.html  | 4 ++--
 docs/en/index.html | 4 ++--
 docs/en/meta/edit-guide/index.html | 4 ++--
 docs/index.html| 4 ++--
 docs/zh/basics/download/index.html | 4 ++--
 docs/zh/basics/help/index.html | 4 ++--
 docs/zh/basics/import/index.html   | 4 ++--
 docs/zh/basics/inspiration/index.html  | 4 ++--
 docs/zh/basics/release-note/5-2-0/index.html   | 4 ++--
 

[echarts-handbook] branch master updated: Update v5-feature.md

2021-09-01 Thread wangzx
This is an automated email from the ASF dual-hosted git repository.

wangzx 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 39c8277  Update v5-feature.md
 new c13f170  Merge pull request #7 from LuckyHookin/patch-1
39c8277 is described below

commit 39c8277063554232d5a6bedb1f5b5f5fa5c8ba1e
Author: Hookin <45350455+luckyhoo...@users.noreply.github.com>
AuthorDate: Thu Sep 2 11:30:25 2021 +0800

Update v5-feature.md
---
 contents/zh/basics/release-note/v5-feature.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contents/zh/basics/release-note/v5-feature.md 
b/contents/zh/basics/release-note/v5-feature.md
index db90b1c..069e7a5 100644
--- a/contents/zh/basics/release-note/v5-feature.md
+++ b/contents/zh/basics/release-note/v5-feature.md
@@ -157,7 +157,7 @@ echarts.init(DomElement, null, {​
 
  TypeScript 重构
 
-在近 8 年的时间里,Apache ECharts 已经发展成一个非常复杂的可视化库了,为了续可以更安全高效的进行重构和新功能的开发,我们在 Apache 
ECharts 5 的开发之初,使用 TypeScript 对代码进行了重写,TypeScript 所带来的强类型让我们更有信心地在 ECharts 5 
开发的时候对代码进行大刀阔斧的重构以实现更多令人激动人心的特性。
+在近 8 年的时间里,Apache ECharts 已经发展成一个非常复杂的可视化库了,为了可以更安全高效的进行重构和新功能的开发,我们在 Apache 
ECharts 5 的开发之初,使用 TypeScript 对代码进行了重写,TypeScript 所带来的强类型让我们更有信心地在 ECharts 5 
开发的时候对代码进行大刀阔斧的重构以实现更多令人激动人心的特性。
 
 对于开发者,我们也可以从 TypeScript 代码直接生成更好更符合代码的`DTS`类型描述文件。在此之前,ECharts 
的类型描述文件一直是由社区开发者帮我们维护并发布到[DefinityTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/echarts),这个有着不小的工作量,非常感谢大家的贡献。
 

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



[GitHub] [echarts] pissang commented on a change in pull request #15533: Feat: Enable interleaved at catagory label axis

2021-09-01 Thread GitBox


pissang commented on a change in pull request #15533:
URL: https://github.com/apache/echarts/pull/15533#discussion_r700726480



##
File path: src/component/axis/AxisBuilder.ts
##
@@ -776,9 +781,18 @@ function buildAxisLabel(
 
 const tickCoord = axis.dataToCoord(tickValue);
 
+const font = labelModel.getFont();
+const labelFormatter = makeLabelFormatter(axis);
+const rect = textContain.getBoundingRect(

Review comment:
   `textContain.getBoundingRect` won't consider rich text. Instead, we can 
always use `textEl.getBoundingRect()` to get the accurate rect. Then we can 
calculate the `y`.




-- 
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] ayede commented on issue #10922: ECharts- How to show horizontal scroll bar with 3 lines of legend, and after that scroll if items doesn't fit in 3 lines

2021-09-01 Thread GitBox


ayede commented on issue #10922:
URL: https://github.com/apache/echarts/issues/10922#issuecomment-911124478


   I am still looking for this feature. Is there any chance that we can get 
this support from echarts?


-- 
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] plainheart edited a comment on issue #15656: Stacked line chart data does not correspond to polylines

2021-09-01 Thread GitBox


plainheart edited a comment on issue #15656:
URL: https://github.com/apache/echarts/issues/15656#issuecomment-911074830


   This example is used to show how to draw a stacked line chart. It is the 
right behavior when you enable the 
[`stack`](https://echarts.apache.org/en/option.html#series-line.stack) mode. 
But the labels of the last series may be confusing. It shows its own data 
instead of the sum.


-- 
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] plainheart commented on issue #15656: Stacked line chart data does not correspond to polylines

2021-09-01 Thread GitBox


plainheart commented on issue #15656:
URL: https://github.com/apache/echarts/issues/15656#issuecomment-911074830


   This example is used to show how to draw a stacked line chart. It is the 
right behavior when you enable the 
[`stack`](https://echarts.apache.org/en/option.html#series-line.stack) mode.


-- 
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 #15656: Stacked line chart data does not correspond to polylines

2021-09-01 Thread GitBox


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


   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



[GitHub] [echarts] LOU-4599 opened a new issue #15656: Stacked line chart data does not correspond to polylines

2021-09-01 Thread GitBox


LOU-4599 opened a new issue #15656:
URL: https://github.com/apache/echarts/issues/15656


   ### Version
   5.2.0
   
   ### Reproduction link
   
[https://echarts.apache.org/examples/zh/editor.html?c=area-stack](https://echarts.apache.org/examples/zh/editor.html?c=area-stack)
   
   ### Steps to reproduce
   In the official example, the data cannot correspond to the broken line 
because the stack value is the same, which will cause numerical superposition. 
It will affect the discount display. I hope the official can modify the example
   
   ### What is expected?
   Polylines correspond to data
   
   ### What is actually happening?
   Polyline and data cannot correspond
   
   
   


-- 
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] AmosChenYQ commented on pull request #15533: Feat: Enable interleaved at catagory label axis

2021-09-01 Thread GitBox


AmosChenYQ commented on pull request #15533:
URL: https://github.com/apache/echarts/pull/15533#issuecomment-911064119


   > > My idea is when series type is set to 'bar', ignore 'interleaved'.
   > 
   > Not a good idea. Even in `line`, when data is too close to axis or user 
has set `min`, line still can 'cross over' label.
   
   So how about interleaving at the same side? After discussion with Yi Shen, 
this proposal seemed like a good idea
   
![image](https://user-images.githubusercontent.com/31386769/131772615-c11e2f72-5583-489b-8055-94cbc0db6030.png)
   


-- 
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-website] branch asf-site updated: fix example titles

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

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


The following commit(s) were added to refs/heads/asf-site by this push:
 new 0adbe31  fix example titles
0adbe31 is described below

commit 0adbe31d659f5fd8878e28e6b28f75ebd5c0
Author: pissang 
AuthorDate: Thu Sep 2 10:37:32 2021 +0800

fix example titles
---
 examples/js/example-bundle.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/js/example-bundle.js b/examples/js/example-bundle.js
index 7dbb058..e1c774d 100644
--- a/examples/js/example-bundle.js
+++ b/examples/js/example-bundle.js
@@ -1 +1 @@
-var echartsExample;echartsExample=(()=>{var t={913:(t,e,n)=>{t=n.nmd(t);var 
a={grid:"GridComponent",polar:"PolarComponent",geo:"GeoComponent",singleAxis:"SingleAxisComponent",parallel:"ParallelComponent",calendar:"CalendarComponent",graphic:"GraphicComponent",toolbox:"ToolboxComponent",tooltip:"TooltipComponent",axisPointer:"AxisPointerComponent",brush:"BrushComponent",title:"TitleComponent",timeline:"TimelineComponent",markPoint:"MarkPointComponent",markLine:"MarkLineComponent",markArea
 [...]
\ No newline at end of file
+var echartsExample;echartsExample=(()=>{var t={913:(t,e,n)=>{t=n.nmd(t);var 
a={grid:"GridComponent",polar:"PolarComponent",geo:"GeoComponent",singleAxis:"SingleAxisComponent",parallel:"ParallelComponent",calendar:"CalendarComponent",graphic:"GraphicComponent",toolbox:"ToolboxComponent",tooltip:"TooltipComponent",axisPointer:"AxisPointerComponent",brush:"BrushComponent",title:"TitleComponent",timeline:"TimelineComponent",markPoint:"MarkPointComponent",markLine:"MarkLineComponent",markArea
 [...]
\ No newline at end of file

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



[echarts-examples] branch gh-pages updated: fix typos

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

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


The following commit(s) were added to refs/heads/gh-pages by this push:
 new 2cc7638  fix typos
2cc7638 is described below

commit 2cc7638e3083d6478fa43bd617211a6d7f7c529c
Author: pissang 
AuthorDate: Thu Sep 2 10:34:00 2021 +0800

fix typos
---
 public/data/calendar-charts.js | 2 +-
 public/data/calendar-horizontal.js | 2 +-
 public/data/candlestick-brush.js   | 2 +-
 src/data/chart-list-data.js| 6 +++---
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/public/data/calendar-charts.js b/public/data/calendar-charts.js
index 39aaad7..9b0cbd2 100644
--- a/public/data/calendar-charts.js
+++ b/public/data/calendar-charts.js
@@ -1,7 +1,7 @@
 /*
 title: Calendar Charts
 category: 'calendar, scatter'
-titleCN: 日力图
+titleCN: 日历图
 shotWidth: 1000
 difficulty: 11
 */
diff --git a/public/data/calendar-horizontal.js 
b/public/data/calendar-horizontal.js
index 9dde1f1..c9d9015 100644
--- a/public/data/calendar-horizontal.js
+++ b/public/data/calendar-horizontal.js
@@ -1,7 +1,7 @@
 /*
 title: Calendar Heatmap Horizontal
 category: calendar
-titleCN: 横向日力图
+titleCN: 横向日历图
 shotWidth: 900
 difficulty: 2
 */
diff --git a/public/data/candlestick-brush.js b/public/data/candlestick-brush.js
index 9ea6029..36c4da7 100644
--- a/public/data/candlestick-brush.js
+++ b/public/data/candlestick-brush.js
@@ -1,7 +1,7 @@
 /*
 title: Candlestick Brush
 category: candlestick
-titleCN: 日力图刷选
+titleCN: 日历图刷选
 */
 
 var upColor = '#00da3c';
diff --git a/src/data/chart-list-data.js b/src/data/chart-list-data.js
index d8b8789..2418a66 100644
--- a/src/data/chart-list-data.js
+++ b/src/data/chart-list-data.js
@@ -414,7 +414,7 @@ export default [
 "id": "calendar-horizontal",
 "tags": [],
 "title": "Calendar Heatmap Horizontal",
-"titleCN": "横向日力图",
+"titleCN": "横向日历图",
 "difficulty": 2
   },
   {
@@ -1956,7 +1956,7 @@ export default [
 "id": "candlestick-brush",
 "tags": [],
 "title": "Candlestick Brush",
-"titleCN": "日力图刷选",
+"titleCN": "日历图刷选",
 "difficulty": 10
   },
   {
@@ -2646,7 +2646,7 @@ export default [
 "id": "calendar-charts",
 "tags": [],
 "title": "Calendar Charts",
-"titleCN": "日力图",
+"titleCN": "日历图",
 "difficulty": 11
   },
   {

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



[GitHub] [echarts] pissang commented on a change in pull request #15510: feat(scatter): remove label overlap for scatter point #15509

2021-09-01 Thread GitBox


pissang commented on a change in pull request #15510:
URL: https://github.com/apache/echarts/pull/15510#discussion_r700696021



##
File path: src/label/labelLayoutHelper.ts
##
@@ -362,4 +372,318 @@ export function hideOverlap(labelList: LabelLayoutInfo[]) 
{
 displayedLabels.push(labelItem);
 }
 }
+}
+
+/**
+ * remove label overlaps
+ */
+export function removeOverlap(

Review comment:
   This method can be moved out to an individual file and named with a 
specific algorithm.

##
File path: src/util/types.ts
##
@@ -1198,6 +1198,11 @@ export interface LabelLayoutOption {
  * @default 'none'
  */
 hideOverlap?: boolean
+/**
+ * If labels overlap. It will Remove overlaps;
+ * @default 'none'
+ */
+removeOverlap?: boolean

Review comment:
   `moveOverlap` is used for different label layout algorithms. Perhaps we 
can add a value to it to represent this default layout algorithm.
   ```ts
   // Apply default layout algorithm. Which will be this one I think.
   moveOverlap: true
   // Or name of this specific layout algorithm.
   moverOverlap: 'xxx'
   ```




-- 
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 a change in pull request #15589: fix(polar): wrong sector clockwise when previous data is 0 #15517

2021-09-01 Thread GitBox


pissang commented on a change in pull request #15589:
URL: https://github.com/apache/echarts/pull/15589#discussion_r700694369



##
File path: src/chart/bar/BarView.ts
##
@@ -750,7 +750,7 @@ const elementCreator: {
 // direction. Notice that if clockwise is true (by default), the sector
 // will always draw clockwisely, no matter whether endAngle is greater
 // or less than startAngle.
-const clockwise = layout.startAngle < layout.endAngle;
+const clockwise = layout.startAngle <= layout.endAngle;

Review comment:
   It may still have issue when `angleAxis.clockwise` is set to `false`




-- 
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 merged pull request #15583: Fix: time axis overlapped labels

2021-09-01 Thread GitBox


pissang merged pull request #15583:
URL: https://github.com/apache/echarts/pull/15583


   


-- 
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 #15583: Fix: time axis overlapped labels

2021-09-01 Thread GitBox


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


   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] branch master updated (ce461a6 -> f46b404)

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

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


from ce461a6  Merge pull request #15599 from apache/fix-line-animation
 new f4ac290  Fix: time axis overlapped labels
 new ec9b3fc  Use tick level to determine the priority
 new 7d33cfb  Add comment to describe the fix
 new 319ac07  Use z2 instead of zlevel for priority
 new 563fc01  Use map and have a fallback z2 value
 new f46b404  Merge pull request #15583 from svedova/master

The 8079 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/axis/AxisBuilder.ts | 19 +--
 src/coord/axisTickLabelBuilder.ts |  2 ++
 src/label/labelLayoutHelper.ts|  8 
 src/util/types.ts |  1 +
 4 files changed, 24 insertions(+), 6 deletions(-)

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



[GitHub] [echarts] pissang closed issue #15581: fix(line): line chart animation is not replayed when calling setOption twice

2021-09-01 Thread GitBox


pissang closed issue #15581:
URL: https://github.com/apache/echarts/issues/15581


   


-- 
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 merged pull request #15599: fix(line): not stop existing expand animation when update.

2021-09-01 Thread GitBox


pissang merged pull request #15599:
URL: https://github.com/apache/echarts/pull/15599


   


-- 
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 #15599 from apache/fix-line-animation

2021-09-01 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.git

commit ce461a65551e9521a1616dbdae9fb41d104c6f32
Merge: 93164d9 cffa380
Author: Yi Shen 
AuthorDate: Thu Sep 2 10:07:13 2021 +0800

Merge pull request #15599 from apache/fix-line-animation

fix(line): not stop existing expand animation when update.

 src/chart/line/LineView.ts | 15 ---
 test/line-animation.html   | 38 ++
 2 files changed, 50 insertions(+), 3 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 #15599: fix(line): not stop existing expand animation when update.

2021-09-01 Thread GitBox


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


   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] branch master updated (93164d9 -> ce461a6)

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

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


from 93164d9  Merge pull request #15655 from apache/publish-nightly-next
 add cffa380  fix(line): fix line chart animation #15581
 new ce461a6  Merge pull request #15599 from apache/fix-line-animation

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/chart/line/LineView.ts | 15 ---
 test/line-animation.html   | 38 ++
 2 files changed, 50 insertions(+), 3 deletions(-)

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



[echarts] branch master updated (43b0da2 -> 93164d9)

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

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


from 43b0da2  Merge pull request #15647 from apache/release
 add 6b488a8  chore: add nightly publish for next branch
 new 93164d9  Merge pull request #15655 from apache/publish-nightly-next

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:
 .asf.yaml  | 33 
 .../workflows/{nightly.yml => nightly-next.yml}| 11 --
 build/prepareNightly.js| 44 +-
 3 files changed, 67 insertions(+), 21 deletions(-)
 copy .github/workflows/{nightly.yml => nightly-next.yml} (80%)

-
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 #15655: chore: add nightly publish for next branch

2021-09-01 Thread GitBox


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


   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 #15655 from apache/publish-nightly-next

2021-09-01 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.git

commit 93164d9eb67be9d78c9bbf46d93b0e81fc832576
Merge: 43b0da2 6b488a8
Author: Yi Shen 
AuthorDate: Thu Sep 2 09:58:54 2021 +0800

Merge pull request #15655 from apache/publish-nightly-next

chore: add nightly publish for next branch

 .asf.yaml  | 33 
 .github/workflows/nightly-next.yml | 37 
 build/prepareNightly.js| 44 +++---
 3 files changed, 97 insertions(+), 17 deletions(-)

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



[GitHub] [echarts] pissang merged pull request #15655: chore: add nightly publish for next branch

2021-09-01 Thread GitBox


pissang merged pull request #15655:
URL: https://github.com/apache/echarts/pull/15655


   


-- 
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 opened a new pull request #15655: chore: add nightly publish for next branch

2021-09-01 Thread GitBox


pissang opened a new pull request #15655:
URL: https://github.com/apache/echarts/pull/15655


   
   
   ## Brief Information
   
   This pull request is in the type of:
   
   - [ ] bug fixing
   - [ ] new feature
   - [x] others
   
   
   
   ### What does this PR do?
   
   We are trying to improve our workflow. Features of the next minor/major 
version will be included in the next branch before it's merged into master. 
This pull request is for publishing the nightly version of next branch and add 
next branch to protected branches.
   


-- 
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 #15655: chore: add nightly publish for next branch

2021-09-01 Thread GitBox


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


   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



[echarts] 01/01: chore: add nightly publish for next branch

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

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

commit 6b488a8d29055f184960e3b29410bf5e23d8e33e
Author: pissang 
AuthorDate: Thu Sep 2 09:50:16 2021 +0800

chore: add nightly publish for next branch
---
 .asf.yaml  | 33 
 .github/workflows/nightly-next.yml | 37 
 build/prepareNightly.js| 44 +++---
 3 files changed, 97 insertions(+), 17 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index c35ff79..63abb9c 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -28,3 +28,36 @@ github:
 - data-viz
 - canvas
 - svg
+  protected_branches:
+master:
+  required_status_checks:
+# strict means "Require branches to be up to date before merging".
+strict: false
+# contexts are the names of checks that must pass
+# contexts:
+#   - gh-infra/jenkins
+  required_pull_request_reviews:
+dismiss_stale_reviews: true
+require_code_owner_reviews: false
+required_approving_review_count: 1
+  required_linear_history: false
+  required_signatures: false
+release:
+  required_status_checks:
+strict: false
+  required_pull_request_reviews:
+dismiss_stale_reviews: true
+require_code_owner_reviews: false
+required_approving_review_count: 1
+  required_linear_history: false
+  required_signatures: false
+next:
+  required_status_checks:
+strict: false
+  required_pull_request_reviews:
+dismiss_stale_reviews: true
+require_code_owner_reviews: false
+required_approving_review_count: 1
+  required_linear_history: false
+  required_signatures: false
+
diff --git a/.github/workflows/nightly-next.yml 
b/.github/workflows/nightly-next.yml
new file mode 100644
index 000..7028c1d
--- /dev/null
+++ b/.github/workflows/nightly-next.yml
@@ -0,0 +1,37 @@
+name: Publish Nightly Next
+
+on:
+  schedule:
+- cron: '0 9 * * *' # After zrender nightly published
+  # committers can manually trigger with workflow_dispatch
+  workflow_dispatch: {}
+  repository_dispatch:
+types: publish-nightly-next
+
+jobs:
+  build:
+runs-on: ubuntu-latest
+
+strategy:
+  matrix:
+node-version: [12.x]
+
+steps:
+  - uses: actions/checkout@v2
+with:
+  ref: next
+
+  - name: Use Node.js ${{ matrix.node-version }}
+uses: actions/setup-node@v1
+with:
+  registry-url: https://registry.npmjs.org/
+  - name: Setup and publish nightly
+run: |
+  npm ci
+  npm run release
+  npm run test
+  npm run test:dts
+  node build/prepareNightly.js --next
+  npm publish --tag next
+env:
+  NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
diff --git a/build/prepareNightly.js b/build/prepareNightly.js
index 442d3d5..44d20cc 100644
--- a/build/prepareNightly.js
+++ b/build/prepareNightly.js
@@ -23,26 +23,36 @@ const packageJsonPath = __dirname + '/../package.json';
 const nightlyPackageName = 'echarts-nightly';
 
 const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8'));
-const version = packageJson.version;
-const parts = /(\d+)\.(\d+)\.(\d+)($|\-.*)/.exec(version);
-if (!parts) {
-throw new Error(`Invalid version number ${version}`);
-}
-// Add date to version.
-const major = +parts[1];
-const minor = +parts[2];
-let patch = +parts[3];
-const notDev = !(parts[4] && parts[4].includes('-dev'));
-if (notDev) {
-// It's previous stable or rc version. Dev version should be higher.
-patch++;
-}
 
-const date = new Date().toISOString().replace(/:|T|\.|-/g, '').slice(0, 8);
-const nightlyVersion = `${major}.${minor}.${patch}-dev.${date}`;
+function updateVersion(version) {
+const isNext = process.argv.includes('--next');
+const parts = /(\d+)\.(\d+)\.(\d+)($|\-)/.exec(version);
+if (!parts) {
+throw new Error(`Invalid version number ${version}`);
+}
+// Add date to version.
+const major = +parts[1];
+let minor = +parts[2];
+let patch = +parts[3];
+const isStable = !parts[4];
+if (isStable) {
+// It's previous stable version. Dev version should be higher.
+if (isNext) {
+// Increase minor version for next branch.
+minor++;
+}
+else {
+// Increase main version for master branch.
+patch++;
+}
+}
+
+const date = new Date().toISOString().replace(/:|T|\.|-/g, '').slice(0, 8);
+return `${major}.${minor}.${patch}-dev.${date}`;
+}
 
 packageJson.name = nightlyPackageName;
-packageJson.version = nightlyVersion;
+packageJson.version = updateVersion(packageJson.version);
 
 fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, 

[echarts] branch publish-nightly-next created (now 6b488a8)

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

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


  at 6b488a8  chore: add nightly publish for next branch

This branch includes the following new commits:

 new 6b488a8  chore: add nightly publish for next branch

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.


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



[GitHub] [echarts] ataft opened a new issue #15654: Prevent overlapping elements

2021-09-01 Thread GitBox


ataft opened a new issue #15654:
URL: https://github.com/apache/echarts/issues/15654


   ### Version
   5.2.0
   
   ### Reproduction link
   [https://codepen.io/ataft/pen/dyWxpyG](https://codepen.io/ataft/pen/dyWxpyG)
   
   ### Steps to reproduce
   There are many open issues where various elements are overlapping with each 
other. Axis names overlap with axis labels, the legend and grid overlap, axis 
labels are cut, timeline overlaps with axis, etc. This makes it very difficult 
to manually set grid top/bottom/left/right, axis nameGap, legend location, 
top/bottom/left/right for non-grid series (e.g. pie), and impossible for 
parallel series that don't have top/bottom/left/right settings.
   
   Here are some of the open issues that highlight the problem:
   
   Axis names overlap with axis labels
   https://github.com/apache/echarts/issues/9265
   https://github.com/apache/echarts/issues/14996
   
   Legend and Grid overlap
   https://github.com/apache/echarts/issues/14252
   https://github.com/apache/echarts/issues/14724
   
   Axis Labels cut off
   https://github.com/apache/echarts/issues/15562
   
   ### What is expected?
   Elements are sized appropriately based on positions
   
   ### What is actually happening?
   Elements overlap
   
   
   


-- 
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 #15654: Prevent overlapping elements

2021-09-01 Thread GitBox


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


   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



[GitHub] [echarts] aweibell commented on issue #15498: Distribute axes evenly

2021-09-01 Thread GitBox


aweibell commented on issue #15498:
URL: https://github.com/apache/echarts/issues/15498#issuecomment-910255128


   Any additional thoughts on this, @Ovilia ?


-- 
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-handbook] branch gh-pages updated (9ff6ff3 -> fa94bbe)

2021-09-01 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 9ff6ff3  Deploying to gh-pages from @ 
apache/echarts-handbook@ccb51862d31632b981e34165fb6be44c3675cff1 
 new fa94bbe  Deploying to gh-pages from @ 
apache/echarts-handbook@d5e45365fde6f6b815d7b913cd4a8c3837b6167e 

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   (9ff6ff3)
\
 N -- N -- N   refs/heads/gh-pages (fa94bbe)

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/{eabbe3e.js => 4f9392d.js}  | 2 +-
 docs/_nuxt/js/{b8e629689e036a52ba5a.js => 4a761c0a963dcb7417e6.js} | 2 +-
 docs/_nuxt/js/551ec26154d44471b38e.js  | 1 +
 docs/_nuxt/js/e3a087ea1d56974daa49.js  | 1 -
 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-practices/aria/index.html | 4 ++--
 docs/en/best-practices/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/how-to/chart-types/bar/bar-race/index.html | 4 ++--
 docs/en/how-to/chart-types/bar/basic-bar/index.html| 4 ++--
 docs/en/how-to/chart-types/bar/stacked-bar/index.html  | 4 ++--
 docs/en/how-to/chart-types/bar/waterfall/index.html| 4 ++--
 docs/en/how-to/chart-types/line/area-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/line/basic-line/index.html  | 4 ++--
 docs/en/how-to/chart-types/line/smooth-line/index.html | 4 ++--
 docs/en/how-to/chart-types/line/stacked-line/index.html| 4 ++--
 docs/en/how-to/chart-types/line/step-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/pie/basic-pie/index.html| 4 ++--
 docs/en/how-to/chart-types/pie/doughnut/index.html | 4 ++--
 docs/en/how-to/chart-types/pie/rose/index.html | 4 ++--
 docs/en/how-to/chart-types/scatter/basic-scatter/index.html| 4 ++--
 docs/en/how-to/cross-platform/server/index.html| 4 ++--
 docs/en/how-to/data/dynamic-data/index.html| 4 ++--
 docs/en/how-to/interaction/drag/index.html | 4 ++--
 docs/en/how-to/label/rich-text/index.html  | 4 ++--
 docs/en/index.html | 4 ++--
 docs/en/meta/edit-guide/index.html | 4 ++--
 docs/index.html| 4 ++--
 docs/zh/basics/download/index.html | 4 ++--
 docs/zh/basics/help/index.html | 4 ++--
 docs/zh/basics/import/index.html   | 4 ++--
 docs/zh/basics/inspiration/index.html  | 4 ++--
 

[echarts-handbook] branch master updated: add search language

2021-09-01 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 d5e4536  add search language
d5e4536 is described below

commit d5e45365fde6f6b815d7b913cd4a8c3837b6167e
Author: pissang 
AuthorDate: Wed Sep 1 20:35:31 2021 +0800

add search language
---
 components/partials/Sidebar.vue | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/components/partials/Sidebar.vue b/components/partials/Sidebar.vue
index 5a754e7..f3ac761 100644
--- a/components/partials/Sidebar.vue
+++ b/components/partials/Sidebar.vue
@@ -4,7 +4,7 @@
   
   
 

[echarts-handbook] branch gh-pages updated (7326756 -> 9ff6ff3)

2021-09-01 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 7326756  Deploying to gh-pages from @ 
apache/echarts-handbook@66d7778ccbf11fc1f98b08832e374c765fe24656 
 new 9ff6ff3  Deploying to gh-pages from @ 
apache/echarts-handbook@ccb51862d31632b981e34165fb6be44c3675cff1 

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   (7326756)
\
 N -- N -- N   refs/heads/gh-pages (9ff6ff3)

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/{6ed4f03.js => eabbe3e.js}  | 2 +-
 docs/_nuxt/js/{75b3b59c4c49f7db3938.js => b8e629689e036a52ba5a.js} | 2 +-
 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-practices/aria/index.html | 4 ++--
 docs/en/best-practices/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/how-to/chart-types/bar/bar-race/index.html | 4 ++--
 docs/en/how-to/chart-types/bar/basic-bar/index.html| 4 ++--
 docs/en/how-to/chart-types/bar/stacked-bar/index.html  | 4 ++--
 docs/en/how-to/chart-types/bar/waterfall/index.html| 4 ++--
 docs/en/how-to/chart-types/line/area-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/line/basic-line/index.html  | 4 ++--
 docs/en/how-to/chart-types/line/smooth-line/index.html | 4 ++--
 docs/en/how-to/chart-types/line/stacked-line/index.html| 4 ++--
 docs/en/how-to/chart-types/line/step-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/pie/basic-pie/index.html| 4 ++--
 docs/en/how-to/chart-types/pie/doughnut/index.html | 4 ++--
 docs/en/how-to/chart-types/pie/rose/index.html | 4 ++--
 docs/en/how-to/chart-types/scatter/basic-scatter/index.html| 4 ++--
 docs/en/how-to/cross-platform/server/index.html| 4 ++--
 docs/en/how-to/data/dynamic-data/index.html| 4 ++--
 docs/en/how-to/interaction/drag/index.html | 4 ++--
 docs/en/how-to/label/rich-text/index.html  | 4 ++--
 docs/en/index.html | 4 ++--
 docs/en/meta/edit-guide/index.html | 4 ++--
 docs/index.html| 4 ++--
 docs/zh/basics/download/index.html | 4 ++--
 docs/zh/basics/help/index.html | 4 ++--
 docs/zh/basics/import/index.html   | 4 ++--
 docs/zh/basics/inspiration/index.html  | 4 ++--
 docs/zh/basics/release-note/5-2-0/index.html   | 4 ++--
 docs/zh/basics/release-note/v5-feature/index.html  | 4 ++--
 

[echarts-website] branch asf-site updated (441f686 -> 005a07b)

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

shenyi pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/echarts-website.git.


 discard 441f686  Deploying to asf-site from @ 
apache/echarts-website@005a07b314bcf1f7ea985ac84345dc6d4cccdab2 

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/asf-site (005a07b)
\
 O -- O -- O   (441f686)

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

No new revisions were added by this update.

Summary of changes:
 components/builder.html|   4 +-
 components/download.html   |   4 +-
 components/nav.html|   2 +-
 en/404.html|   4 +-
 en/api.html|   6 +-
 en/builder.html|   4 +-
 en/builder/echarts.html|   2 +-
 en/changelog.html  |   6 +-
 en/cheat-sheet.html|   6 +-
 en/coding-standard.html|   6 +-
 en/committers.html |   4 +-
 en/contributing.html   |   4 +-
 en/css/doc-bundle.css.map  |   1 +
 {v4/zh => en}/css/element-icons.ttf| Bin
 {v4/zh => en}/css/element-icons.woff   | Bin
 en/css/main.css|   2 +-
 en/dependencies.html   |   4 +-
 en/download-extension.html |   4 +-
 en/download-map.html   |   6 +-
 en/download-theme.html |   6 +-
 en/download.html   |   4 +-
 en/events.html |   4 +-
 en/events/2021-05-13-iscas.html|   4 +-
 en/events/2021-07-05-apachecon.html|   4 +-
 en/faq.html|   6 +-
 en/feature.html|   4 +-
 en/index.html  |   6 +-
 en/js/chart-list.js|   2 +-
 en/js/cheat-sheet-en.js|   2 +-
 en/js/cheat-sheet.js   |   2 +-
 en/js/common.js|   2 +-
 en/js/download.js  |   2 +-
 en/js/examples-nav.js  |   2 +-
 en/js/index.js |   2 +-
 en/maillist.html   |   4 +-
 en/nav.html|   2 +-
 en/option-gl.html  |   6 +-
 en/option.html |   6 +-
 en/option3.html|   4 +-
 en/resources.html  |   4 +-
 en/security.html   |   4 +-
 en/spreadsheet.html|   8 +-
 en/theme-builder.html  |   6 +-
 en/tutorial.html   |   6 +-
 examples/en/editor.html|   6 +-
 examples/en/index.html |   6 +-
 examples/en/view.html  |   6 +-
 examples/js/example-bundle.js.map  |   1 +
 examples/js/example-transform-ts-bundle.js.map |   1 +
 examples/zh/editor.html|   6 +-
 examples/zh/index.html |   6 +-
 examples/zh/view.html  |   6 +-
 handbook/200.html  |   7 +-
 handbook/_nuxt/LICENSES|  68 +-
 handbook/_nuxt/css/{6d160d4.css => 4989614.css}|   2 +-
 handbook/_nuxt/css/8cca5bf.css |   1 -
 handbook/_nuxt/css/f96d2a2.css |   1 +
 handbook/_nuxt/{b7c4d56.js => e7e8128.js}  |   2 +-
 ...53d945fa68fe8817.js => 08435746bb3f8ba825bd.js} |   2 +-
 ...fc8aa9e140f5af2a.js => 085ff989b504d0d92d78.js} |   2 +-
 ...faedd44eb784d65b.js => 08dc424523de06716042.js} |   2 +-
 handbook/_nuxt/js/094f59ff14e2aa1c4628.js  |   1 -
 ...44e5c3b8473e7f4b.js => 095c79bda125cb04e097.js} |   2 +-
 ...233b245ce1acefc6.js => 0b3cdf54824fe834d9a9.js} |   2 +-
 ...0f6ca218b8401dab.js => 0ef99a568f448c513d20.js} |   2 +-
 handbook/_nuxt/js/1026397e338422b3e004.js  |   1 -
 ...b46471804611e928.js => 1315ac68ca7fd80b9e35.js} |   2 +-
 handbook/_nuxt/js/1384b359981424ebc3f4.js  |   1 +
 ...9978bb0976266789.js => 14cb3aa5104f37726269.js} |   2 +-
 ...fbb1b36a4941d025.js => 15f09df001c4174615ba.js} |   2 +-
 

[echarts-handbook] branch master updated: fix nav fetch

2021-09-01 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 ccb5186  fix nav fetch
ccb5186 is described below

commit ccb51862d31632b981e34165fb6be44c3675cff1
Author: pissang 
AuthorDate: Wed Sep 1 20:06:08 2021 +0800

fix nav fetch
---
 build/generate.js | 23 ++-
 pages/_.vue   |  1 -
 2 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/build/generate.js b/build/generate.js
index 27ed336..f8ada73 100644
--- a/build/generate.js
+++ b/build/generate.js
@@ -12,24 +12,29 @@ async function updateNav() {
   `../components/partials/Navbar/${locale}.vue`
 )
 console.log('Fetching...', localPath)
+let navContent = ''
 try {
-  fs.copyFileSync(`${websitePath}/${locale}/nav.html`, targetPath)
+  navContent = fs.readFileSync(
+`${websitePath}/${locale}/nav.html`,
+targetPath
+  )
 } catch (e) {
   console.log(
 'Local file not found. Fetching...',
 `http://echarts.apache.org/${locale}/nav.html`
   )
-  const navContent = await fetch(
+  navContent = await fetch(
 `http://echarts.apache.org/${locale}/nav.html`
   ).then(response => response.text())
-  fs.writeFileSync(
-localPath,
-`
-  ${navContent}
-  `,
-'utf-8'
-  )
 }
+
+fs.writeFileSync(
+  localPath,
+  `
+${navContent}
+`,
+  'utf-8'
+)
   }
 }
 
diff --git a/pages/_.vue b/pages/_.vue
index cd13342..384af74 100644
--- a/pages/_.vue
+++ b/pages/_.vue
@@ -26,7 +26,6 @@
 
 
 

[echarts-website] branch asf-site updated (830929b -> 005a07b)

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

shenyi pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/echarts-website.git.


 discard 830929b  Deploying to asf-site from @ 
apache/echarts-website@005a07b314bcf1f7ea985ac84345dc6d4cccdab2 

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/asf-site (005a07b)
\
 O -- O -- O   (830929b)

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

No new revisions were added by this update.

Summary of changes:
 components/builder.html|   4 +-
 components/download.html   |   4 +-
 components/nav.html|   2 +-
 en/404.html|   4 +-
 en/api.html|   6 +-
 en/builder.html|   4 +-
 en/builder/echarts.html|   2 +-
 en/changelog.html  |   6 +-
 en/cheat-sheet.html|   6 +-
 en/coding-standard.html|   6 +-
 en/committers.html |   4 +-
 en/contributing.html   |   4 +-
 en/css/doc-bundle.css.map  |   1 +
 {v4/zh => en}/css/element-icons.ttf| Bin
 {v4/zh => en}/css/element-icons.woff   | Bin
 en/css/main.css|   2 +-
 en/dependencies.html   |   4 +-
 en/download-extension.html |   4 +-
 en/download-map.html   |   6 +-
 en/download-theme.html |   6 +-
 en/download.html   |   4 +-
 en/events.html |   4 +-
 en/events/2021-05-13-iscas.html|   4 +-
 en/events/2021-07-05-apachecon.html|   4 +-
 en/faq.html|   6 +-
 en/feature.html|   4 +-
 en/index.html  |   6 +-
 en/js/chart-list.js|   2 +-
 en/js/cheat-sheet-en.js|   2 +-
 en/js/cheat-sheet.js   |   2 +-
 en/js/common.js|   2 +-
 en/js/download.js  |   2 +-
 en/js/examples-nav.js  |   2 +-
 en/js/index.js |   2 +-
 en/maillist.html   |   4 +-
 en/nav.html|   2 +-
 en/option-gl.html  |   6 +-
 en/option.html |   6 +-
 en/option3.html|   4 +-
 en/resources.html  |   4 +-
 en/security.html   |   4 +-
 en/spreadsheet.html|   8 +-
 en/theme-builder.html  |   6 +-
 en/tutorial.html   |   6 +-
 examples/en/editor.html|   6 +-
 examples/en/index.html |   6 +-
 examples/en/view.html  |   6 +-
 examples/js/example-bundle.js.map  |   1 +
 examples/js/example-transform-ts-bundle.js.map |   1 +
 examples/zh/editor.html|   6 +-
 examples/zh/index.html |   6 +-
 examples/zh/view.html  |   6 +-
 handbook/200.html  |   7 +-
 handbook/_nuxt/LICENSES|  68 +-
 handbook/_nuxt/css/{6d160d4.css => 4989614.css}|   2 +-
 handbook/_nuxt/css/8cca5bf.css |   1 -
 handbook/_nuxt/css/f96d2a2.css |   1 +
 handbook/_nuxt/{1016346.js => e7e8128.js}  |   2 +-
 ...53d945fa68fe8817.js => 08435746bb3f8ba825bd.js} |   2 +-
 ...fc8aa9e140f5af2a.js => 085ff989b504d0d92d78.js} |   2 +-
 ...faedd44eb784d65b.js => 08dc424523de06716042.js} |   2 +-
 handbook/_nuxt/js/094f59ff14e2aa1c4628.js  |   1 -
 ...44e5c3b8473e7f4b.js => 095c79bda125cb04e097.js} |   2 +-
 ...233b245ce1acefc6.js => 0b3cdf54824fe834d9a9.js} |   2 +-
 handbook/_nuxt/js/0dc760b28152d2a10a82.js  |   1 -
 ...0f6ca218b8401dab.js => 0ef99a568f448c513d20.js} |   2 +-
 handbook/_nuxt/js/1026397e338422b3e004.js  |   1 -
 ...b46471804611e928.js => 1315ac68ca7fd80b9e35.js} |   2 +-
 handbook/_nuxt/js/1384b359981424ebc3f4.js  |   1 +
 ...9978bb0976266789.js => 14cb3aa5104f37726269.js} |   2 +-
 

[echarts-handbook] branch gh-pages updated (743a117 -> 7326756)

2021-09-01 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 743a117  Deploying to gh-pages from @ 
apache/echarts-handbook@3a8865bdb634dcb3f0ef3aa10983ced89b8939b5 
 new 7326756  Deploying to gh-pages from @ 
apache/echarts-handbook@66d7778ccbf11fc1f98b08832e374c765fe24656 

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   (743a117)
\
 N -- N -- N   refs/heads/gh-pages (7326756)

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/{b0eac4f.js => 6ed4f03.js}  | 2 +-
 docs/_nuxt/js/{9f1d290f877913d28200.js => 75b3b59c4c49f7db3938.js} | 2 +-
 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-practices/aria/index.html | 4 ++--
 docs/en/best-practices/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/how-to/chart-types/bar/bar-race/index.html | 4 ++--
 docs/en/how-to/chart-types/bar/basic-bar/index.html| 4 ++--
 docs/en/how-to/chart-types/bar/stacked-bar/index.html  | 4 ++--
 docs/en/how-to/chart-types/bar/waterfall/index.html| 4 ++--
 docs/en/how-to/chart-types/line/area-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/line/basic-line/index.html  | 4 ++--
 docs/en/how-to/chart-types/line/smooth-line/index.html | 4 ++--
 docs/en/how-to/chart-types/line/stacked-line/index.html| 4 ++--
 docs/en/how-to/chart-types/line/step-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/pie/basic-pie/index.html| 4 ++--
 docs/en/how-to/chart-types/pie/doughnut/index.html | 4 ++--
 docs/en/how-to/chart-types/pie/rose/index.html | 4 ++--
 docs/en/how-to/chart-types/scatter/basic-scatter/index.html| 4 ++--
 docs/en/how-to/cross-platform/server/index.html| 4 ++--
 docs/en/how-to/data/dynamic-data/index.html| 4 ++--
 docs/en/how-to/interaction/drag/index.html | 4 ++--
 docs/en/how-to/label/rich-text/index.html  | 4 ++--
 docs/en/index.html | 4 ++--
 docs/en/meta/edit-guide/index.html | 4 ++--
 docs/index.html| 4 ++--
 docs/zh/basics/download/index.html | 4 ++--
 docs/zh/basics/help/index.html | 4 ++--
 docs/zh/basics/import/index.html   | 4 ++--
 docs/zh/basics/inspiration/index.html  | 4 ++--
 docs/zh/basics/release-note/5-2-0/index.html   | 4 ++--
 docs/zh/basics/release-note/v5-feature/index.html  | 4 ++--
 

[echarts-www] branch master updated: build handbook after build pages.

2021-09-01 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-www.git


The following commit(s) were added to refs/heads/master by this push:
 new dcd269c  build handbook after build pages.
dcd269c is described below

commit dcd269c9536598e3be8b3e83133f9e58f0c0dae4
Author: pissang 
AuthorDate: Wed Sep 1 19:32:12 2021 +0800

build handbook after build pages.
---
 _jade/components/nav-mixin.jade |  1 -
 _jade/en/nav-mixin.jade |  1 -
 bin/release.sh  | 34 --
 3 files changed, 12 insertions(+), 24 deletions(-)

diff --git a/_jade/components/nav-mixin.jade b/_jade/components/nav-mixin.jade
index 988c3cb..7ccbdf2 100644
--- a/_jade/components/nav-mixin.jade
+++ b/_jade/components/nav-mixin.jade
@@ -31,7 +31,6 @@ mixin nav(hostParam, cdnPayRootParam, cdnPayVersionParam)
 a(href='#{hostParam}/zh/faq.html') 常见问题
 li
 
a(href='#{hostParam}/handbook/zh/basics/release-note/v5-upgrade-guide') v5 升级指南
-span.new new
 li#nav-download.dropdown
 a(href='#', class="dropdown-toggle", 
data-toggle="dropdown") 下载
 b.caret
diff --git a/_jade/en/nav-mixin.jade b/_jade/en/nav-mixin.jade
index c104826..587b55d 100644
--- a/_jade/en/nav-mixin.jade
+++ b/_jade/en/nav-mixin.jade
@@ -31,7 +31,6 @@ mixin nav(hostParam, cdnPayRootParam, cdnPayVersionParam)
 a(href='#{hostParam}/en/faq.html') FAQ
 li
 
a(href='#{hostParam}/handbook/en/basics/release-note/v5-upgrade-guide') V5 
Upgrade Guide
-span.new new
 li#nav-download.dropdown
 a(href='#', class="dropdown-toggle", 
data-toggle="dropdown") Download
 b.caret
diff --git a/bin/release.sh b/bin/release.sh
index c3c7eb4..7f1623b 100644
--- a/bin/release.sh
+++ b/bin/release.sh
@@ -74,18 +74,6 @@ npm run release
 cd ${currWorkingDir}
 echo "Build examples done."
 
-# Build handbook
-echo "Build handbook ..."
-if [ ! -d "${handbookProjectDir}" ]; then
-echo "Directory ${handbookProjectDir} DOES NOT exists."
-exit 1
-fi
-cd ${handbookProjectDir}
-npm run build:${envType}
-rm -rf ${websiteTargetDir}/handbook
-cp -R ${handbookProjectDir}/dist ${websiteTargetDir}/handbook
-echo "Build handbook done."
-
 # Build SPA pages.
 cd ${thisScriptDir}
 node releasePages.js
@@ -97,16 +85,18 @@ node bin/build.js --env ${envType}
 cd ${currWorkingDir}
 echo "Build www done."
 
-
-if [[ "${envType}" = "echartsjs" ]]; then
-cd ${wwwProjectDir}
-echo "zip echarts-www.zip ..."
-if [ -f echarts-www.zip ]; then
-rm echarts-www.zip
-fi
-zip -r -q echarts-www.zip release
-echo "zip echarts-www.zip done."
-cd ${currWorkingDir}
+# Build handbook after www page build.
+# handbook needs fetch nav page.
+echo "Build handbook ..."
+if [ ! -d "${handbookProjectDir}" ]; then
+echo "Directory ${handbookProjectDir} DOES NOT exists."
+exit 1
 fi
+cd ${handbookProjectDir}
+npm run build:${envType}
+rm -rf ${websiteTargetDir}/handbook
+cp -R ${handbookProjectDir}/dist ${websiteTargetDir}/handbook
+echo "Build handbook done."
+
 
 echo "echarts-www release done for ${envType}"

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



[echarts-handbook] branch master updated: try to update nav from local built at first

2021-09-01 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 66d7778  try to update nav from local built at first
66d7778 is described below

commit 66d7778ccbf11fc1f98b08832e374c765fe24656
Author: pissang 
AuthorDate: Wed Sep 1 19:31:48 2021 +0800

try to update nav from local built at first
---
 build/generate.js | 36 +---
 1 file changed, 25 insertions(+), 11 deletions(-)

diff --git a/build/generate.js b/build/generate.js
index 2d13b50..27ed336 100644
--- a/build/generate.js
+++ b/build/generate.js
@@ -2,20 +2,34 @@ const fetch = require('node-fetch')
 const path = require('path')
 const fs = require('fs')
 
+const websitePath = path.resolve(__dirname, '../../echarts-website')
+
 async function updateNav() {
   for (let locale of ['zh', 'en']) {
-console.log('Fetching...', `http://echarts.apache.org//${locale}/nav.html`)
-const navContent = await fetch(
-  `http://echarts.apache.org/${locale}/nav.html`
-).then(response => response.text())
-
-fs.writeFileSync(
-  path.join(__dirname, `../components/partials/Navbar/${locale}.vue`),
-  `
-${navContent}
-`,
-  'utf-8'
+const localPath = `${websitePath}/${locale}/nav.html`
+const targetPath = path.join(
+  __dirname,
+  `../components/partials/Navbar/${locale}.vue`
 )
+console.log('Fetching...', localPath)
+try {
+  fs.copyFileSync(`${websitePath}/${locale}/nav.html`, targetPath)
+} catch (e) {
+  console.log(
+'Local file not found. Fetching...',
+`http://echarts.apache.org/${locale}/nav.html`
+  )
+  const navContent = await fetch(
+`http://echarts.apache.org/${locale}/nav.html`
+  ).then(response => response.text())
+  fs.writeFileSync(
+localPath,
+`
+  ${navContent}
+  `,
+'utf-8'
+  )
+}
   }
 }
 

-
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 (c8c85cd -> 743a117)

2021-09-01 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 c8c85cd  Deploying to gh-pages from @ 
apache/echarts-handbook@ffdcc54ac36e4a7483233987d2b0ba56af3324b9 
 new 743a117  Deploying to gh-pages from @ 
apache/echarts-handbook@3a8865bdb634dcb3f0ef3aa10983ced89b8939b5 

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   (c8c85cd)
\
 N -- N -- N   refs/heads/gh-pages (743a117)

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/{fbd3bb6.js => b0eac4f.js}   | 2 +-
 docs/_nuxt/js/454bce2fe31492b7adf2.js   | 1 -
 docs/_nuxt/js/7e6805b6d420a9d924e2.js   | 1 +
 docs/_nuxt/js/86ff68fd72f2c7e2b4c7.js   | 1 -
 docs/_nuxt/js/db0e35482386339f1402.js   | 1 +
 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-practices/aria/index.html  | 4 ++--
 docs/en/best-practices/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/how-to/chart-types/bar/bar-race/index.html  | 4 ++--
 docs/en/how-to/chart-types/bar/basic-bar/index.html | 4 ++--
 docs/en/how-to/chart-types/bar/stacked-bar/index.html   | 4 ++--
 docs/en/how-to/chart-types/bar/waterfall/index.html | 4 ++--
 docs/en/how-to/chart-types/line/area-line/index.html| 4 ++--
 docs/en/how-to/chart-types/line/basic-line/index.html   | 4 ++--
 docs/en/how-to/chart-types/line/smooth-line/index.html  | 4 ++--
 docs/en/how-to/chart-types/line/stacked-line/index.html | 4 ++--
 docs/en/how-to/chart-types/line/step-line/index.html| 4 ++--
 docs/en/how-to/chart-types/pie/basic-pie/index.html | 4 ++--
 docs/en/how-to/chart-types/pie/doughnut/index.html  | 4 ++--
 docs/en/how-to/chart-types/pie/rose/index.html  | 4 ++--
 docs/en/how-to/chart-types/scatter/basic-scatter/index.html | 4 ++--
 docs/en/how-to/cross-platform/server/index.html | 4 ++--
 docs/en/how-to/data/dynamic-data/index.html | 4 ++--
 docs/en/how-to/interaction/drag/index.html  | 4 ++--
 docs/en/how-to/label/rich-text/index.html   | 4 ++--
 docs/en/index.html  | 4 ++--
 docs/en/meta/edit-guide/index.html  | 4 ++--
 docs/index.html | 4 ++--
 docs/zh/basics/download/index.html  | 4 ++--
 docs/zh/basics/help/index.html  | 4 ++--
 docs/zh/basics/import/index.html| 4 ++--
 docs/zh/basics/inspiration/index.html   | 4 ++--
 docs/zh/basics/release-note/5-2-0/index.html| 6 +++---
 docs/zh/basics/release-note/v5-feature/index.html   | 4 ++--
 docs/zh/basics/release-note/v5-upgrade-guide/index.html | 4 ++--
 docs/zh/best-practices/aria/index.html  | 4 ++--
 

[echarts-handbook] 01/04: fix: fix content

2021-09-01 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

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

commit 6bd3b50b97e661b3462c21970ee2a41f305d8c5f
Author: Ovilia 
AuthorDate: Tue Aug 31 14:26:09 2021 +0800

fix: fix content
---
 contents/zh/application/cross-platform/baidu-app.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/contents/zh/application/cross-platform/baidu-app.md 
b/contents/zh/application/cross-platform/baidu-app.md
index 816fc9f..6010244 100644
--- a/contents/zh/application/cross-platform/baidu-app.md
+++ b/contents/zh/application/cross-platform/baidu-app.md
@@ -1,14 +1,14 @@
 # 在百度智能小程序中使用 ECharts
 
-[ECharts 
图表-beta](http://smartprogram.baidu.com/docs/develop/framework/echarts/) 
以小程序动态库的形式提供了在百度智能小程序中使用 ECharts 的方式。
+[ECharts 图表](http://smartprogram.baidu.com/docs/develop/framework/echarts/) 
以小程序动态库的形式提供了在百度智能小程序中使用 ECharts 的方式。
 
-[aidu-smart-app-echarts-demo](https://github.com/baidu-smart-app/baidu-smart-app-echarts-demo)
 项目是使用该动态库的一个示例工程,可以作为参考,一般情况下不需要引入自己的项目。
+[baidu-smart-app-echarts-demo](https://github.com/baidu-smart-app/baidu-smart-app-echarts-demo)
 项目是使用该动态库的一个示例工程,可以作为参考,一般情况下不需要引入自己的项目。
 
 如有使用上的问题,可以在 
[baidu-smart-app-echarts-demo/issues](https://github.com/baidu-smart-app/baidu-smart-app-echarts-demo/issues)
 中咨询。
 
 ## 使用方式
 
-参见百度智能小程序文档 [ECharts 
图表-beta](http://smartprogram.baidu.com/docs/develop/framework/echarts/)。
+参见百度智能小程序文档 [ECharts 
图表](http://smartprogram.baidu.com/docs/develop/framework/echarts/)。
 
 ## 注意事项
 

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



[echarts-handbook] 03/04: fix typo

2021-09-01 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

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

commit 948bbf8ada3d9ca1ffb0b40433238e530d283d8f
Author: Ovilia 
AuthorDate: Wed Sep 1 18:41:10 2021 +0800

fix typo
---
 contents/zh/basics/release-note/5-2-0.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contents/zh/basics/release-note/5-2-0.md 
b/contents/zh/basics/release-note/5-2-0.md
index c1efc16..5376e1f 100644
--- a/contents/zh/basics/release-note/5-2-0.md
+++ b/contents/zh/basics/release-note/5-2-0.md
@@ -309,7 +309,7 @@ option = {
 };
 ```
 
-这一配置项可以让我们避免了去找调色盘颜色然去一一设置的麻烦,可能在特定的场景需求中提供便捷。后续我们会对这个配置项做进一步的增强,提供更多的调色盘取色的策略。
+这一配置项可以让我们避免了去找调色盘颜色然后去一一设置的麻烦,可能在特定的场景需求中提供便捷。后续我们会对这个配置项做进一步的增强,提供更多的调色盘取色的策略。
 
 ## 极坐标柱状图的标签
 

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



[echarts-handbook] 04/04: Merge branch 'master' of github.com:apache/incubator-echarts-handbook

2021-09-01 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

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

commit 3a8865bdb634dcb3f0ef3aa10983ced89b8939b5
Merge: 948bbf8 ffdcc54
Author: Ovilia 
AuthorDate: Wed Sep 1 18:41:20 2021 +0800

Merge branch 'master' of github.com:apache/incubator-echarts-handbook

 app.html   |   1 +
 build/generate-contributors.js |   2 +-
 components/helper/contributors.ts  | 285 +
 components/partials/Navbar/en.vue  |   2 +-
 components/partials/Navbar/zh.vue  |   2 +-
 components/partials/Sidebar.vue|  17 +-
 contents/en/basics/download.md |   8 +-
 contents/en/basics/inspiration.md  |   2 +-
 contents/en/basics/release-note/5-2-0.md   |   6 +-
 .../en/{best-practice => best-practices}/aria.md   |   0
 .../canvas-vs-svg.md   |   0
 .../design/color-enhance.md|   0
 .../best-practice => en/best-practices}/mobile.md  |   0
 .../specification/bar/basic-bar.md |   0
 .../specification/bar/bi-directional-bar.md|   0
 .../specification/bar/grouped-bar.md   |   0
 .../specification/bar/stacked-bar.md   |   0
 .../specification/funnel.md|   0
 .../specification/gauge.md |   0
 .../specification/line/area.md |   0
 .../specification/line/basic-line.md   |   0
 .../specification/line/stacked-area.md |   0
 .../specification/pie/basic-pie.md |   0
 .../specification/radar.md |   0
 .../specification/scatter/bubble.md|   0
 .../specification/scatter/scatter.md   |   0
 contents/en/get-started.md |   4 +-
 .../chart-types/bar/bar-race.md|   0
 .../chart-types/bar/basic-bar.md   |   0
 .../chart-types/bar/polar-bar.md   |   0
 .../chart-types/bar/stacked-bar.md |   0
 .../chart-types/bar/waterfall.md   |   0
 .../chart-types/line/area-line.md  |   0
 .../chart-types/line/basic-line.md |   0
 .../chart-types/line/smooth-line.md|   0
 .../chart-types/line/stacked-line.md   |   0
 .../chart-types/line/step-line.md  |   0
 .../chart-types/pie/basic-pie.md   |   0
 .../chart-types/pie/doughnut.md|   0
 .../chart-types/pie/rose.md|   0
 .../chart-types/scatter/basic-scatter.md   |   0
 .../cross-platform/server.md   |   0
 .../application => en/how-to}/data/drilldown.md|   0
 .../{application => how-to}/data/dynamic-data.md   |   0
 .../en/{application => how-to}/interaction/drag.md |   0
 .../en/{application => how-to}/label/rich-text.md  |   0
 contents/en/posts.yml  |   8 +-
 contents/zh/basics/download.md |   8 +-
 contents/zh/basics/release-note/5-2-0.md   |   6 +-
 .../zh/{best-practice => best-practices}/aria.md   |   0
 .../canvas-vs-svg.md   |   0
 .../design/color-enhance.md|   0
 .../zh/{application => best-practices}/mobile.md   |   0
 .../specification/bar/basic-bar.md |   0
 .../specification/bar/bi-directional-bar.md|   0
 .../specification/bar/grouped-bar.md   |   0
 .../specification/bar/stacked-bar.md   |   0
 .../specification/funnel.md|   0
 .../specification/gauge.md |   0
 .../specification/line/area.md |   0
 .../specification/line/basic-line.md   |   0
 .../specification/line/stacked-area.md |   0
 .../specification/pie/basic-pie.md |   0
 .../specification/radar.md |   0
 .../specification/scatter/bubble.md|   0
 .../specification/scatter/scatter.md   |   0
 .../chart-types/bar/bar-race.md|   0
 .../chart-types/bar/basic-bar.md   |   0
 .../chart-types/bar/polar-bar.md   |   0
 .../chart-types/bar/stacked-bar.md |   0
 .../chart-types/bar/waterfall.md   |   0
 .../chart-types/line/area-line.md  |   0
 .../chart-types/line/basic-line.md |   0
 .../chart-types/line/smooth-line.md|   0
 .../chart-types/line/stacked-line.md   |   0
 .../chart-types/line/step-line.md  |   0
 .../chart-types/pie/basic-pie.md   |   0
 .../chart-types/pie/doughnut.md|   0
 .../chart-types/pie/rose.md

[echarts-handbook] branch master updated (ffdcc54 -> 3a8865b)

2021-09-01 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

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


from ffdcc54  fix: 1) activate the corresponding item in the header nav. 2) 
update navbar to the latest. 3) `Applications` -> `How To Guides`. related 
commit: 
https://github.com/apache/echarts-handbook/commit/c12152f1450414087158c61a8d78038d46448698
 4) add i18n translation for `searchHandbook` term.
 new 6bd3b50  fix: fix content
 new b44c8f6  Merge branch 'master' of 
github.com:apache/incubator-echarts-handbook
 new 948bbf8  fix typo
 new 3a8865b  Merge branch 'master' of 
github.com:apache/incubator-echarts-handbook

The 4 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:
 contents/zh/basics/release-note/5-2-0.md   | 2 +-
 contents/zh/how-to/cross-platform/baidu-app.md | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

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



[echarts-handbook] 02/04: Merge branch 'master' of github.com:apache/incubator-echarts-handbook

2021-09-01 Thread ovilia
This is an automated email from the ASF dual-hosted git repository.

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

commit b44c8f60475d1fd590d7016af347203f65e76528
Merge: 6bd3b50 712d458
Author: Ovilia 
AuthorDate: Tue Aug 31 14:29:24 2021 +0800

Merge branch 'master' of github.com:apache/incubator-echarts-handbook

 app.html  | 36 
 build/generate.js | 44 --
 components/markdown/Example.vue   |  4 +-
 components/partials/Sidebar.vue   | 84 +++
 contents/en/application/data/dynamic-data.md  |  4 +-
 contents/en/basics/release-note/v5-feature.md | 12 ++--
 contents/en/meta/edit-guide.md|  9 +++
 contents/zh/application/data/dynamic-data.md  |  4 +-
 contents/zh/basics/release-note/v5-feature.md | 12 ++--
 contents/zh/meta/edit-guide.md|  9 +++
 layouts/default.vue   |  8 +--
 pages/_.vue   | 29 +++--
 types/nuxt.d.ts   |  1 -
 13 files changed, 163 insertions(+), 93 deletions(-)

-
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 (d69ac0c -> c8c85cd)

2021-09-01 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 d69ac0c  Deploying to gh-pages from @ 
apache/echarts-handbook@1d317c452b3a7530175bda79c21de91a3b306640 
 new c8c85cd  Deploying to gh-pages from @ 
apache/echarts-handbook@ffdcc54ac36e4a7483233987d2b0ba56af3324b9 

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   (d69ac0c)
\
 N -- N -- N   refs/heads/gh-pages (c8c85cd)

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  | 7 ---
 docs/_nuxt/css/{4989614.css => 6d160d4.css}| 2 +-
 docs/_nuxt/css/8cca5bf.css | 1 +
 docs/_nuxt/css/f96d2a2.css | 1 -
 docs/_nuxt/{a76237f.js => fbd3bb6.js}  | 2 +-
 docs/_nuxt/js/{d58fed0446e1448e8acc.js => 4726cacd35f432090085.js} | 2 +-
 docs/_nuxt/js/7b87e86d30efec157d45.js  | 1 -
 docs/_nuxt/js/{09109756cfc493070347.js => 9f1d290f877913d28200.js} | 2 +-
 docs/_nuxt/js/e3a087ea1d56974daa49.js  | 1 +
 docs/en/basics/download/index.html | 5 +++--
 docs/en/basics/help/index.html | 5 +++--
 docs/en/basics/import/index.html   | 7 ---
 docs/en/basics/inspiration/index.html  | 5 +++--
 docs/en/basics/release-note/5-2-0/index.html   | 7 ---
 docs/en/basics/release-note/v5-feature/index.html  | 7 ---
 docs/en/basics/release-note/v5-upgrade-guide/index.html| 7 ---
 docs/en/best-practices/aria/index.html | 7 ---
 docs/en/best-practices/canvas-vs-svg/index.html| 7 ---
 docs/en/concepts/axis/index.html   | 7 ---
 docs/en/concepts/chart-size/index.html | 7 ---
 docs/en/concepts/data-transform/index.html | 7 ---
 docs/en/concepts/dataset/index.html| 7 ---
 docs/en/concepts/event/index.html  | 7 ---
 docs/en/concepts/legend/index.html | 7 ---
 docs/en/concepts/style/index.html  | 7 ---
 docs/en/concepts/visual-map/index.html | 7 ---
 docs/en/get-started/index.html | 7 ---
 docs/en/how-to/chart-types/bar/bar-race/index.html | 7 ---
 docs/en/how-to/chart-types/bar/basic-bar/index.html| 7 ---
 docs/en/how-to/chart-types/bar/stacked-bar/index.html  | 7 ---
 docs/en/how-to/chart-types/bar/waterfall/index.html| 7 ---
 docs/en/how-to/chart-types/line/area-line/index.html   | 7 ---
 docs/en/how-to/chart-types/line/basic-line/index.html  | 7 ---
 docs/en/how-to/chart-types/line/smooth-line/index.html | 7 ---
 docs/en/how-to/chart-types/line/stacked-line/index.html| 7 ---
 docs/en/how-to/chart-types/line/step-line/index.html   | 7 ---
 docs/en/how-to/chart-types/pie/basic-pie/index.html| 7 ---
 docs/en/how-to/chart-types/pie/doughnut/index.html | 7 ---
 docs/en/how-to/chart-types/pie/rose/index.html | 7 ---
 docs/en/how-to/chart-types/scatter/basic-scatter/index.html| 7 ---
 docs/en/how-to/cross-platform/server/index.html| 5 +++--
 docs/en/how-to/data/dynamic-data/index.html| 7 ---
 docs/en/how-to/interaction/drag/index.html | 7 ---
 docs/en/how-to/label/rich-text/index.html  | 7 ---
 docs/en/index.html | 5 +++--
 docs/en/meta/edit-guide/index.html | 7 ---
 

[echarts-handbook] branch master updated: fix: 1) activate the corresponding item in the header nav. 2) update navbar to the latest. 3) `Applications` -> `How To Guides`. related commit: https://githu

2021-09-01 Thread wangzx
This is an automated email from the ASF dual-hosted git repository.

wangzx 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 ffdcc54  fix: 1) activate the corresponding item in the header nav. 2) 
update navbar to the latest. 3) `Applications` -> `How To Guides`. related 
commit: 
https://github.com/apache/echarts-handbook/commit/c12152f1450414087158c61a8d78038d46448698
 4) add i18n translation for `searchHandbook` term.
ffdcc54 is described below

commit ffdcc54ac36e4a7483233987d2b0ba56af3324b9
Author: plainheart 
AuthorDate: Wed Sep 1 18:32:31 2021 +0800

fix: 1) activate the corresponding item in the header nav.
2) update navbar to the latest.
3) `Applications` -> `How To Guides`. related commit: 
https://github.com/apache/echarts-handbook/commit/c12152f1450414087158c61a8d78038d46448698
4) add i18n translation for `searchHandbook` term.
---
 app.html  |  1 +
 components/partials/Navbar/en.vue |  2 +-
 components/partials/Navbar/zh.vue |  2 +-
 components/partials/Sidebar.vue   | 15 +++
 contents/en/basics/inspiration.md |  2 +-
 nuxt.config.js|  6 --
 6 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/app.html b/app.html
index 75bebba..eb1f216 100644
--- a/app.html
+++ b/app.html
@@ -19,6 +19,7 @@
   
   
 {{ APP }}
+document.getElementById('nav-doc').className = 
'active';
 https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js";>
 https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js";>
 

[GitHub] [echarts] tmscer commented on issue #14689: Using sampling with connectNulls connects regular datapoints with null ones when zoomed out

2021-09-01 Thread GitBox


tmscer commented on issue #14689:
URL: https://github.com/apache/echarts/issues/14689#issuecomment-910128820


   I see that `5.2.0` has been released, should the milestone be updated or is 
it possible that this bug will be fixed in some `5.2.x`?


-- 
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 #15646: Pie chart tooltip is only showing when hover on legend, not showing when hover on arc in firefox

2021-09-01 Thread GitBox


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






-- 
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 #15642: 直方图数据一致且为小数时出现NaN

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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 #15637: 桑基图使用dispatchAction只会高亮节点,并没有高亮全部高亮节点相应的links,只会高亮第一个节点的links

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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 #15643: 当直方图数据多项一致且为小数时出现NaN

2021-09-01 Thread GitBox


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


   


-- 
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 #15641: 直方图数据一致且为小数时出现NaN

2021-09-01 Thread GitBox


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


   


-- 
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 #15636: the markPoint, markLine and markArea disppear in series.bar of chart configuration in v5

2021-09-01 Thread GitBox


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


   


-- 
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 #15651: Legend text is not centered vertically

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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 #15639: singleAxis should be specified.

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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 #15639: singleAxis should be specified.

2021-09-01 Thread GitBox


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


   


-- 
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 #15637: 桑基图使用dispatchAction只会高亮节点,并没有高亮全部高亮节点相应的links,只会高亮第一个节点的links

2021-09-01 Thread GitBox


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


   


-- 
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] bigfacewo commented on issue #15649: 5.x的map无法正常显示标签

2021-09-01 Thread GitBox


bigfacewo commented on issue #15649:
URL: https://github.com/apache/echarts/issues/15649#issuecomment-909935266


   预期效果4.9.0:
   
![image](https://user-images.githubusercontent.com/31603897/131621006-adfb4d19-89ca-439a-914c-c3a24918bbd9.png)
   
   实际效果5.1.2:
   
![image](https://user-images.githubusercontent.com/31603897/131621054-adc28da5-f714-4d49-9d9c-f716646d87de.png)
   
   删除lengend配置5.1.2:
   
![image](https://user-images.githubusercontent.com/31603897/131621097-dad781a5-2bdc-42da-9226-0107a3f6f68e.png)
   


-- 
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 #15647: Release 5.2.0 merge to master

2021-09-01 Thread GitBox


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






-- 
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 #15648: Can I use `this` in formatter function? `this` is current echartsInstance(后续是否考虑在formatter函数中的 this 直接 指向当前的 echartsInstance )

2021-09-01 Thread GitBox


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






-- 
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 #15638: x坐标轴上添加刻度的问题

2021-09-01 Thread GitBox


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


   


-- 
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 #15652: Legend text is not centered vertically

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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] Teaghy removed a comment on issue #15651: Legend text is not centered vertically

2021-09-01 Thread GitBox


Teaghy removed a comment on issue #15651:
URL: https://github.com/apache/echarts/issues/15651#issuecomment-909973370


   Version
   5.2.0
   
   Reproduction link
   https://echarts.apache.org/examples/zh/editor.html?c=pie-borderRadius
   
   Steps to reproduce
   Go to the Echarts website, and open any of the story charts
   
   What is expected?
   Legend text is centered vertically
   
   What is actually happening?
   All the text next to the legend is not vertically centered. is this right?


-- 
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] Teaghy commented on issue #15651: Legend text is not centered vertically

2021-09-01 Thread GitBox


Teaghy commented on issue #15651:
URL: https://github.com/apache/echarts/issues/15651#issuecomment-909973370


   Version
   5.2.0
   
   Reproduction link
   https://echarts.apache.org/examples/zh/editor.html?c=pie-borderRadius
   
   Steps to reproduce
   Go to the Echarts website, and open any of the story charts
   
   What is expected?
   Legend text is centered vertically
   
   What is actually happening?
   All the text next to the legend is not vertically centered. is this right?


-- 
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] JaydipPatel84 commented on issue #15646: Pie chart tooltip is only showing when hover on legend, not showing when hover on arc in firefox

2021-09-01 Thread GitBox


JaydipPatel84 commented on issue #15646:
URL: https://github.com/apache/echarts/issues/15646#issuecomment-909966061


   yes, right @plainheart 


-- 
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 #15636: the markPoint, markLine and markArea disppear in series.bar of chart configuration in v5

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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 #15649: 5.x的map无法正常显示标签

2021-09-01 Thread GitBox


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






-- 
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] skayi commented on issue #15633: echarts graph type, when dynamicly setting option zoom, happen exception

2021-09-01 Thread GitBox


skayi commented on issue #15633:
URL: https://github.com/apache/echarts/issues/15633#issuecomment-909071662


   center option cause this issue.


-- 
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 #15651: Legend text is not centered vertically

2021-09-01 Thread GitBox


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


   


-- 
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 #15647: Release 5.2.0 merge to master

2021-09-01 Thread GitBox


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


   


-- 
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 #15644: visualMap设置文字width无效

2021-09-01 Thread GitBox


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






-- 
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] sebbASF commented on issue #15620: Site defaults to Chinese

2021-09-01 Thread GitBox


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






-- 
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] skayi closed issue #15633: echarts graph type, when dynamicly setting option zoom, happen exception

2021-09-01 Thread GitBox


skayi closed issue #15633:
URL: https://github.com/apache/echarts/issues/15633


   


-- 
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 #15643: 当直方图数据多项一致且为小数时出现NaN

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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 #15635: echarts 兼容ie7?

2021-09-01 Thread GitBox


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


   


-- 
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 #15653: Legend text is not centered vertically

2021-09-01 Thread GitBox


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


   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



[GitHub] [echarts] anzhou99 closed issue #15615: 为什么 在仪表盘类型的chart中设置tooltip不会生效?

2021-09-01 Thread GitBox


anzhou99 closed issue #15615:
URL: https://github.com/apache/echarts/issues/15615


   


-- 
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 #15642: 直方图数据一致且为小数时出现NaN

2021-09-01 Thread GitBox


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


   


-- 
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 #15645: Pie chart tooltip is only showing when hover on legend, not showing when hover on arc in firefox

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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] plainheart commented on issue #15653: Legend text is not centered vertically

2021-09-01 Thread GitBox


plainheart commented on issue #15653:
URL: https://github.com/apache/echarts/issues/15653#issuecomment-910021064


   If you are using Windows, the default font is generally `Microsoft Yahei`. 
This kind of font will have such an issue because of its design. You could try 
to use another font, for example, `SimHei`, `PingFang SC`.


-- 
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 #15641: 直方图数据一致且为小数时出现NaN

2021-09-01 Thread GitBox


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


   This issue is not created using [issue 
template](https://ecomfe.github.io/echarts-issue-helper/) so I'm going to close 
it. 
   Sorry for this, but it helps save our maintainers' time so that more 
developers get helped.
   Feel free to create another issue using the issue template.
   
   If you think you have already made your point clear without the template, or 
your problem cannot be covered by it, you may re-open this issue again.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,请使用 issue 模板重新创建 issue。
   
   如果您认为虽然没有使用模板,但您已经提供了复现问题的充分描述,或者您的问题无法使用模板表达,也可以重新 open 这个 issue。


-- 
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 #15645: Pie chart tooltip is only showing when hover on legend, not showing when hover on arc in firefox

2021-09-01 Thread GitBox


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


   


-- 
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] anzhou99 commented on issue #15615: 为什么 在仪表盘类型的chart中设置tooltip不会生效?

2021-09-01 Thread GitBox


anzhou99 commented on issue #15615:
URL: https://github.com/apache/echarts/issues/15615#issuecomment-909037563


   ok,tks


-- 
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] plainheart commented on issue #15620: Site defaults to Chinese

2021-09-01 Thread GitBox


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


   It seems the redirection will be cached if we request the same URL even if 
`Accept-Language` is changed.
   It works well if we add a query parameter, for example, 
`echarts.apache.org?v=1`


-- 
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



  1   2   >