[GitHub] JohnnyRuiGe commented on issue #9960: TreeMap刷新后回到当前展示路径

2019-02-21 Thread GitBox
JohnnyRuiGe commented on issue #9960: TreeMap刷新后回到当前展示路径
URL: 
https://github.com/apache/incubator-echarts/issues/9960#issuecomment-466294167
 
 
   可能是我的表述有问题,我的图形是类似官方Echarts Option Query的demo。需求是刷新后展示刷新前的层级页面。


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] jeffersonswartz commented on issue #9968: title.textStyle.align not working

2019-02-21 Thread GitBox
jeffersonswartz commented on issue #9968: title.textStyle.align not working
URL: 
https://github.com/apache/incubator-echarts/issues/9968#issuecomment-466278760
 
 
   @100pah Thanks, The `title.left: center` worked but it centers both the 
title and subtext. 
   How can I center the title alone without moving the subtext?
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] Ovilia commented on issue #9664: series->symbol支持函数类型,根据需要来设置每个数据的图形

2019-02-21 Thread GitBox
Ovilia commented on issue #9664: series->symbol支持函数类型,根据需要来设置每个数据的图形
URL: 
https://github.com/apache/incubator-echarts/pull/9664#issuecomment-466266590
 
 
   OK. I'm not sure this is how symbols work. @100pah Please have a look.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



Re: Need Input On DataPoints Compatibillity

2019-02-21 Thread Yi Shen
Hi,

It depends on several things, like chart complexity, server performance,
and the latency you can accept.

We suggest you running some tests with the demos in `node-echarts` and get
a reasonable result.

Sunil Patel (15814)  于2019年2月20日周三 下午10:49写道:

> Hello Team,
>
> As we are going through POC to generate Chart image on server side using
> node (node-echarts) ,
> Can you please provide details on how much data-points can be handled
> within single render without progressive as have to generate  on server-end.
> Your help will be appreciated.
>
>
> Thanks!
> Regards,
> Sunil Patel, Software Engineer
> Cybage Software Pvt. Ltd. (An ISO 27001 Company)
> Gandhinagar, India
> Phone (O):91-79-66737000, Ext:5211
> Fax: 91-79-66737001
>
>
> "Legal Disclaimer: This electronic message and all contents contain
> information from Cybage Software Private Limited which may be privileged,
> confidential, or otherwise protected from disclosure. The information is
> intended to be for the addressee(s) only. If you are not an addressee, any
> disclosure, copy, distribution, or use of the contents of this message is
> strictly prohibited. If you have received this electronic message in error
> please notify the sender by reply e-mail to and destroy the original
> message and all copies. Cybage has taken every reasonable precaution to
> minimize the risk of malicious content in the mail, but is not liable for
> any damage you may sustain as a result of any malicious content in this
> e-mail. You should carry out your own malicious content checks before
> opening the e-mail or attachment." www.cybage.com
>


-- 
Yi Shen
Senior Developer
Baidu, Inc.


[GitHub] bluejiaxie edited a comment on issue #9962: series custom change the string value to NaN via api.value when the first string value is numeric string like '0'.

2019-02-21 Thread GitBox
bluejiaxie edited a comment on issue #9962: series custom change the string 
value to NaN via api.value when the first string value is numeric string like 
'0'.
URL: 
https://github.com/apache/incubator-echarts/issues/9962#issuecomment-466250061
 
 
   I find an example in Gallery. Please refer to 
https://gallery.echartsjs.com/editor.html?c=xr1WrPou3b
   
   1. In line 300, add '_console.log('api',api.value(2));_', and then click 
refresh button, the below message will display the first row.
   _api 健康档案数量_
   
   2. Change **"健康档案数量"** to **"0"** in the data section as below, and click 
refresh button again, other data will disappear in chart.
   
   From
   _"name": "健康档案数量",
   "children": [{
   "name": "健康档案管理数", //类型名称_
   
   To
   _"name": "0",
   "children": [{
   "name": "健康档案管理数", //类型名称_
   
   
   3. If just change other name to '_"0"_' except the first data (健康档案数量), all 
data still exist.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] bluejiaxie edited a comment on issue #9962: series custom change the string value to NaN via api.value when the first string value is numeric string like '0'.

2019-02-21 Thread GitBox
bluejiaxie edited a comment on issue #9962: series custom change the string 
value to NaN via api.value when the first string value is numeric string like 
'0'.
URL: 
https://github.com/apache/incubator-echarts/issues/9962#issuecomment-466250061
 
 
   I find an example in Gallery. Please refer to 
https://gallery.echartsjs.com/editor.html?c=xr1WrPou3b
   
   1. In line 300, add '_console.log('api',api.value(2));_', and then click 
refresh button, the below message will display the first row.
   _api 健康档案数量_
   
   2. Change **"健康档案数量"** to **"0"** in the data section as below, and click 
refresh button again, other data will disappear in chart.
   
   From
   _"name": "健康档案数量",
   "children": [{
   "name": "健康档案管理数", //类型名称_
   .
   To
   _"name": "0",
   "children": [{
   "name": "健康档案管理数", //类型名称_
   
   
   3. If just change other name to '_"0"_' except the first data (健康档案数量), all 
data still exist.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] bluejiaxie edited a comment on issue #9962: series custom change the string value to NaN via api.value when the first string value is numeric string like '0'.

2019-02-21 Thread GitBox
bluejiaxie edited a comment on issue #9962: series custom change the string 
value to NaN via api.value when the first string value is numeric string like 
'0'.
URL: 
https://github.com/apache/incubator-echarts/issues/9962#issuecomment-466250061
 
 
   I find an example in Gallery. Please refer to 
https://gallery.echartsjs.com/editor.html?c=xr1WrPou3b
   
   1. In line 300, add '_console.log('api',api.value(2));_', and then click 
refresh button, the below message will display the first row.
   _api 健康档案数量_
   
   2. Change **"健康档案数量"** to **"0"** in the data section as below, and click 
refresh button again, other data will disappear in chart.
   *
   From
   _"name": "健康档案数量",
   "children": [{
   "name": "健康档案管理数", //类型名称_
   
   To
   _"name": "0",
   "children": [{
   "name": "健康档案管理数", //类型名称_
   *
   
   3. If just change other name to '_"0"_' except the first data (健康档案数量), all 
data still exist.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] bluejiaxie edited a comment on issue #9962: series custom change the string value to NaN via api.value when the first string value is numeric string like '0'.

2019-02-21 Thread GitBox
bluejiaxie edited a comment on issue #9962: series custom change the string 
value to NaN via api.value when the first string value is numeric string like 
'0'.
URL: 
https://github.com/apache/incubator-echarts/issues/9962#issuecomment-466250061
 
 
   I find an example in Gallery. Please refer to 
https://gallery.echartsjs.com/editor.html?c=xr1WrPou3b
   
   1. In line 300, add '_console.log('api',api.value(2));_', and then click 
refresh button, the below message will display the first row.
   _api 健康档案数量_
   
   2. Change **"健康档案数量"** to **"0"** in the data section, and click refresh 
button again, other data will disappear in chart.
   
   3. If just change other name to '_"0"_' except the first data (健康档案数量), all 
data still exist.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] bluejiaxie edited a comment on issue #9962: series custom change the string value to NaN via api.value when the first string value is numeric string like '0'.

2019-02-21 Thread GitBox
bluejiaxie edited a comment on issue #9962: series custom change the string 
value to NaN via api.value when the first string value is numeric string like 
'0'.
URL: 
https://github.com/apache/incubator-echarts/issues/9962#issuecomment-466250061
 
 
   I find an example in Gallery. Please refer to 
https://gallery.echartsjs.com/editor.html?c=xr1WrPou3b
   
   1. In line 300, add '_console.log('api',api.value(2));_', and then click 
refresh button, the below message will display the first row.
   _api 健康档案数量_
   
   2. Change '**"健康档案数量"**' to '**"0"**' in the data section, and click refresh 
button again, other data will disappear in chart.
   
   3. If just change other name to '_"0"_' except the first data (健康档案数量), all 
data still exist.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] bluejiaxie commented on issue #9962: series custom change the string value to NaN via api.value when the first string value is numeric string like '0'.

2019-02-21 Thread GitBox
bluejiaxie commented on issue #9962: series custom change the string value to 
NaN via api.value when the first string value is numeric string like '0'.
URL: 
https://github.com/apache/incubator-echarts/issues/9962#issuecomment-466250061
 
 
   I find an example in Gallery. Please refer to 
https://gallery.echartsjs.com/editor.html?c=xr1WrPou3b
   
   1. In line 300, add '_console.log('api',api.value(2));_', and then click 
refresh button, the below message will display the first row.
   _api 健康档案数量_
   
   2. Change '_"健康档案数量"_' to '_"0"_' in the data section, and click refresh 
button again, other data will disappear in chart.
   
   3. If just change other name to '_"0"_' except the first data (健康档案数量), all 
data still exist.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



Re: Steps to Complete the Move from Baidu to Apache

2019-02-21 Thread Kevin A. McGrail
Ah.  For a non apache.org domain / sub domain I see your point.

On Thu, Feb 21, 2019, 20:30 Dave Fisher 
>
> > On Feb 21, 2019, at 5:18 PM, Justin Mclean  wrote:
> >
> > HI,
> >
> >> Not sure what you mean about 3rd party, etc. but there are definitely
> >> analytics/urchin tags on some of the ASF Sites.
> >
> > In this case the analytics are being collected at 3rd party domains and
> all the PPMC (I’m assuming) wouldn’t have access to them or may not even
> know what’s been done with them.
> >
> > This is slightly different to say using google where the PPMC has access
> to the info collected. The domains are hm.baidu.com and echarts.baidu.com.
>
> That’s the issue. It’s not vendor neutral and not in control of a future
> diverse PPMC.
>
> Regards,
> Dave
>
>
> >
> > Thanks,
> > Justin
> >
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@echarts.apache.org
> > For additional commands, e-mail: dev-h...@echarts.apache.org
> >
>
>


Re: Steps to Complete the Move from Baidu to Apache

2019-02-21 Thread Dave Fisher



> On Feb 21, 2019, at 5:18 PM, Justin Mclean  wrote:
> 
> HI,
> 
>> Not sure what you mean about 3rd party, etc. but there are definitely
>> analytics/urchin tags on some of the ASF Sites.
> 
> In this case the analytics are being collected at 3rd party domains and all 
> the PPMC (I’m assuming) wouldn’t have access to them or may not even know 
> what’s been done with them.
> 
> This is slightly different to say using google where the PPMC has access to 
> the info collected. The domains are hm.baidu.com and echarts.baidu.com.

That’s the issue. It’s not vendor neutral and not in control of a future 
diverse PPMC.

Regards,
Dave


> 
> Thanks,
> Justin
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@echarts.apache.org
> For additional commands, e-mail: dev-h...@echarts.apache.org
> 


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



Re: Steps to Complete the Move from Baidu to Apache

2019-02-21 Thread Justin Mclean
HI,

> Not sure what you mean about 3rd party, etc. but there are definitely
> analytics/urchin tags on some of the ASF Sites.

In this case the analytics are being collected at 3rd party domains and all the 
PPMC (I’m assuming) wouldn’t have access to them or may not even know what’s 
been done with them.

This is slightly different to say using google where the PPMC has access to the 
info collected. The domains are hm.baidu.com and echarts.baidu.com.

Thanks,
Justin


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



Re: Steps to Complete the Move from Baidu to Apache

2019-02-21 Thread Kevin A. McGrail
On 2/21/2019 6:10 PM, Justin Mclean wrote:
> Hi,
>
>> Re: #7 Google Analytics at the moment is fine but there are tracking
>> concerns and the Apache VP of Privacy has just been re-filled.  Things
>> like GDPR and data breaches are really shaking things like this up so I
>> don't have an easy answer other than for now, I think it's fine because
>> of what it's used for.
> I'm not sure I agree given it's a 3rd party tracking use in an ASF site. It 
> might be OK for the PPMC to track usage and the whole PPMC have access to 
> those stats, but for a 3rd party where only some the PPMC have access?
Not sure what you mean about 3rd party, etc. but there are definitely
analytics/urchin tags on some of the ASF Sites.

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



Re: Steps to Complete the Move from Baidu to Apache

2019-02-21 Thread Justin Mclean
Hi,

> Re: #7 Google Analytics at the moment is fine but there are tracking
> concerns and the Apache VP of Privacy has just been re-filled.  Things
> like GDPR and data breaches are really shaking things like this up so I
> don't have an easy answer other than for now, I think it's fine because
> of what it's used for.

I'm not sure I agree given it's a 3rd party tracking use in an ASF site. It 
might be OK for the PPMC to track usage and the whole PPMC have access to those 
stats, but for a 3rd party where only some the PPMC have access?

Thanks,
Justin

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



[GitHub] vimalraj-ponnusamy commented on issue #9970: connectnulls not working with step chart ref #3891

2019-02-21 Thread GitBox
vimalraj-ponnusamy commented on issue #9970: connectnulls not working with step 
chart ref #3891
URL: 
https://github.com/apache/incubator-echarts/issues/9970#issuecomment-466097183
 
 
   Reopen


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] echarts-robot[bot] closed issue #9971: Step chart not showing correctly when using connectnulls

2019-02-21 Thread GitBox
echarts-robot[bot] closed issue #9971: Step chart not showing correctly when 
using connectnulls
URL: https://github.com/apache/incubator-echarts/issues/9971
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] vimalraj-ponnusamy opened a new issue #9971: Step chart not showing correctly when using connectnulls

2019-02-21 Thread GitBox
vimalraj-ponnusamy opened a new issue #9971: Step chart not showing correctly 
when using connectnulls
URL: https://github.com/apache/incubator-echarts/issues/9971
 
 
   
   
   This issue is not created by 
[echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will 
be soon closed.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] echarts-robot[bot] commented on issue #9971: Step chart not showing correctly when using connectnulls

2019-02-21 Thread GitBox
echarts-robot[bot] commented on issue #9971: Step chart not showing correctly 
when using connectnulls
URL: 
https://github.com/apache/incubator-echarts/issues/9971#issuecomment-466095352
 
 
   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.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,可以请使用 issue 模板重新创建 issue。


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] 100pah commented on issue #9934: 横坐标密集时展示不全

2019-02-21 Thread GitBox
100pah commented on issue #9934: 横坐标密集时展示不全
URL: 
https://github.com/apache/incubator-echarts/issues/9934#issuecomment-466092187
 
 
   ```js
   xAxis: {
   type: 'category',
   boundaryGap: false,
   axisLabel: {
   rotate: 0,
   interval: 0,
   fontSize: 10
   },
  splitLine: {
  show: true
  }
   }
   ```


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] vimalraj-ponnusamy opened a new issue #9970: connectnulls not working with step chart ref #3891

2019-02-21 Thread GitBox
vimalraj-ponnusamy opened a new issue #9970: connectnulls not working with step 
chart ref #3891
URL: https://github.com/apache/incubator-echarts/issues/9970
 
 
   
   
   This issue is not created by 
[echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will 
be soon closed.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] echarts-robot[bot] closed issue #9970: connectnulls not working with step chart ref #3891

2019-02-21 Thread GitBox
echarts-robot[bot] closed issue #9970: connectnulls not working with step chart 
ref #3891
URL: https://github.com/apache/incubator-echarts/issues/9970
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] echarts-robot[bot] commented on issue #9970: connectnulls not working with step chart ref #3891

2019-02-21 Thread GitBox
echarts-robot[bot] commented on issue #9970: connectnulls not working with step 
chart ref #3891
URL: 
https://github.com/apache/incubator-echarts/issues/9970#issuecomment-466090878
 
 
   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.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,可以请使用 issue 模板重新创建 issue。


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] vimalraj-ponnusamy edited a comment on issue #8921: connectnulls not working properly with step chart

2019-02-21 Thread GitBox
vimalraj-ponnusamy edited a comment on issue #8921: connectnulls not working 
properly with step chart
URL: 
https://github.com/apache/incubator-echarts/issues/8921#issuecomment-459605645
 
 
   @cuijian-dexter @ovilia
   still not working nulls are not getting connected,
   it is the data given by you.
   i also tried adding the connectnulls to all data, but still same result
   
   
   
   attached the image for your reference
   
![capture](https://user-images.githubusercontent.com/16756355/52103344-365bea80-260b-11e9-958e-7ee0e1c6c646.PNG)



This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] 100pah commented on issue #9960: TreeMap刷新后回到当前展示路径

2019-02-21 Thread GitBox
100pah commented on issue #9960: TreeMap刷新后回到当前展示路径
URL: 
https://github.com/apache/incubator-echarts/issues/9960#issuecomment-466051102
 
 
   虽然不太清楚 “记忆路径” 具体指什么。
   但是,设置 `series.animation: false` 能阻止转换动画。


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] 100pah commented on issue #9962: series custom change the string value to NaN via api.value when the first string value is numeric string like '0'.

2019-02-21 Thread GitBox
100pah commented on issue #9962: series custom change the string value to NaN 
via api.value when the first string value is numeric string like '0'.
URL: 
https://github.com/apache/incubator-echarts/issues/9962#issuecomment-466048904
 
 
   Could I have the full `echarts option` to see what is actually happening?
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] 100pah edited a comment on issue #9968: title.textStyle.align not working

2019-02-21 Thread GitBox
100pah edited a comment on issue #9968: title.textStyle.align not working
URL: 
https://github.com/apache/incubator-echarts/issues/9968#issuecomment-466037727
 
 
   For the `title` component, the `title.textAlign` can be used. But the 
`title.textStyle.align` does not work, which I should remove it from the doc.
   
   And if intent to put the text in center, it can be achieved by setting 
`title.left: 'center'`.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] 100pah commented on issue #9968: title.textStyle.align not working

2019-02-21 Thread GitBox
100pah commented on issue #9968: title.textStyle.align not working
URL: 
https://github.com/apache/incubator-echarts/issues/9968#issuecomment-466037727
 
 
   For the `title` component`, the `title.textAlign` can be used. But the 
`title.textStyle.align` does not work, which I should remove it from the doc.
   
   And if intent to put the text in center, it can be achieved by setting 
`title.left: 'center'`.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



Draw chart

2019-02-21 Thread Nazar Shafirovytch
Hello! I need to draw chart like on picture. It is possible with ECharts?
Thank a lot for your help!
[image: image.png]


[GitHub] 100pah commented on issue #9969: textBorderWidth and textBorderColor are both bugged and removes random axis labels

2019-02-21 Thread GitBox
100pah commented on issue #9969: textBorderWidth and textBorderColor are both 
bugged and removes random axis labels
URL: 
https://github.com/apache/incubator-echarts/issues/9969#issuecomment-466035419
 
 
   Could I have the fill `echarts option` to reproduce this issue?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



Re: Steps to Complete the Move from Baidu to Apache

2019-02-21 Thread Kevin A. McGrail
Hi Ovilia,

Re: #1, That is a good question and one which Huawei has offered some
cloud services before for the foundation.  If you had a server in China,
would you want to run to have it mirror the site and use a different URL
like zh.echarts.apache.org and https://echarts.apache.org/zh would
redirect to that site?  That might be a simple solution to your need. 
We can ask fundraising to talk to Huawei and see if they will grant
credits for us.  If you would like me to spearhead this, just discuss
with the pmc and if the PMC would like this, designate me to talk to
Fundraising.  We have a perfect program for this and like I said, I know
Huawei has offered to help with exactly these type of issues.

Re: #7 Google Analytics at the moment is fine but there are tracking
concerns and the Apache VP of Privacy has just been re-filled.  Things
like GDPR and data breaches are really shaking things like this up so I
don't have an easy answer other than for now, I think it's fine because
of what it's used for.

Regards,
KAM
On 2/21/2019 5:45 AM, Ovilia wrote:
> (1) We could provide a https://echarts.apache.org/zh for Chinese
> language users. But the loading time for Chinese users to access the
> Apache server is quite slow.
> We did the following experiment:
> A computer in China access the following web page without cache and proxy:
> https://echartsjs.com/option.html#title takes 3.17 seconds.
> image.png
> while http://echarts.apache.org/option.html takes 8.81 seconds, which
> is almost 3 times of server in China.
> image.png
>
> Considering many of the developers are in China, this loading time
> could be annoying. So would it be possible for Apache to provide a
> server in China so that we could use for https://echarts.apache.org/zh
> , or we could provide a server for it. Would that be OK?
> If not, we would like to use https://echartsjs.com for the
> Chinese version and make http://echarts.baidu.com redirect to it.
>
> (5) I'm not sure what the answer to the question "who is responsible
> for ..." to be. Yes, I have the passwords to these websites.
> https://gallery.echartsjs.com/editor.html is a community tool to host
> user-generated charts online, for others to view and edit. 
> I guess we need to add Apache ECharts (incubating)
> to https://twitter.com/EChartsJs and https://www.weibo.com/echarts . Anything
> else we need to pay special attention to?
>
> (7) These logging files are used for tracking website access, exactly
> as Google Analytics. Would that be illegal?
>
> (8) As about "Top links are not coming from the Apache repos", where
> is this
> "https://raw.githubusercontent.com/ecomfe/echarts/4.1.0/dist/echarts.simple.min.js;?
>
> Zhang Wenli
> http://zhangwenli.com
>
>
> On Wed, Feb 20, 2019 at 11:38 AM Ovilia  > wrote:
>
> Thanks Dave for your detailed request.
> We will work on it and keep you posted.
>
> Zhang Wenli
> http://zhangwenli.com
>
>
> On Wed, Feb 20, 2019 at 6:15 AM Dave Fisher  > wrote:
>
> I wanted to provide guidance on moving the ECharts website to
> Apache. Both the Chinese site and the English site need to be
> hosted on the echarts.apache.org 
> domain and have the source stored in GitHub(GitBox) in the
> apache/incubator-echarts-website repository. There is work to
> do and that will include some that is mandated by Apache policies.
>
> (1) Move echarts.baidu.com 
> . [1][3]
>
> The target here is likely to be something like
> echarts.apache.org/zh 
>  and echarts.apache.org/en
>  
> with echarts.apache.org/ 
>  being smart (or dumb) about
> picking the best for the user. Once the project has that in
> place then a redirection rule should be added to
> echarts.baidu.com 
>  to properly permanently redirect
> any url to the same resource on echarts.apache.org
>  .
>
> The IPMC expects to see movement on this via pull requests
> soon. If there are any differences in support between the
> Baidu served site and what Apache provides then please let us
> ASAP.
>
> (2) Required navigation links for Apache Projects. [2]
>
> You must include links to www.apache.org
>   along with
> the Apache License and other requirements. See [2]
>
> (3) Proper attribution of trademarks is required. [4]
>
> You have this mostly correct on the English site.
>
> (4) The 

[GitHub] Kondinator opened a new issue #9969: textBorderWidth and textBorderColor are both bugged and removes random axis labels

2019-02-21 Thread GitBox
Kondinator opened a new issue #9969: textBorderWidth and textBorderColor are 
both bugged and removes random axis labels
URL: https://github.com/apache/incubator-echarts/issues/9969
 
 
   ### Version
   4.1.0-release
   
   ### Steps to reproduce
   Use either textBorderwidth or textBorderColor, on axis labels makes random 
labels dissapear.
   
   axisLabel: {   
   color: '#fff',
   fontSize: 15,
   textBorderColor: '#333',
   textBorderWidth: '2',
   
   },
   
   ### What is expected?
   All labels shown
   
   ### What is actually happening?
   not all are shown.
   
   ---
   i tested with all my other options for my labels and these were the only 
ones that caused my problem.
   
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] echarts-robot[bot] commented on issue #9969: textBorderWidth and textBorderColor are both bugged and removes random axis labels

2019-02-21 Thread GitBox
echarts-robot[bot] commented on issue #9969: textBorderWidth and 
textBorderColor are both bugged and removes random axis labels
URL: 
https://github.com/apache/incubator-echarts/issues/9969#issuecomment-465986619
 
 
   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 **you have posted enough image to 
demo your request**. 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.
   
   Have a nice day! 


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] echarts-robot[bot] commented on issue #9968: title.textStyle.align not working

2019-02-21 Thread GitBox
echarts-robot[bot] commented on issue #9968: title.textStyle.align not working
URL: 
https://github.com/apache/incubator-echarts/issues/9968#issuecomment-465967815
 
 
   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 **you have posted enough image to 
demo your request**. 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.
   
   Have a nice day! 


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] jeffersonswartz opened a new issue #9968: title.textStyle.align not working

2019-02-21 Thread GitBox
jeffersonswartz opened a new issue #9968: title.textStyle.align not working
URL: https://github.com/apache/incubator-echarts/issues/9968
 
 
   ### Version
   4.2.1-rc1
   
   ### Reproduction link
   
[http://jsfiddle.net/jeffersonswartz/y8zs5coq/5/](http://jsfiddle.net/jeffersonswartz/y8zs5coq/5/)
   
   ### Steps to reproduce
   Add title text and set textStyle.align as 'center'
   
   ### What is expected?
   The title should be centered
   
   ### What is actually happening?
   The text is left aligned which is default
   
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



Re: Steps to Complete the Move from Baidu to Apache

2019-02-21 Thread Ovilia
(1) We could provide a https://echarts.apache.org/zh for Chinese language
users. But the loading time for Chinese users to access the Apache server
is quite slow.
We did the following experiment:
A computer in China access the following web page without cache and proxy:
https://echartsjs.com/option.html#title takes 3.17 seconds.
[image: image.png]
while http://echarts.apache.org/option.html takes 8.81 seconds, which is
almost 3 times of server in China.
[image: image.png]

Considering many of the developers are in China, this loading time could be
annoying. So would it be possible for Apache to provide a server in China
so that we could use for https://echarts.apache.org/zh , or we could
provide a server for it. Would that be OK?
If not, we would like to use https://echartsjs.com for the Chinese version
and make http://echarts.baidu.com redirect to it.

(5) I'm not sure what the answer to the question "who is responsible for
..." to be. Yes, I have the passwords to these websites.
https://gallery.echartsjs.com/editor.html is a community tool to host
user-generated charts online, for others to view and edit.
I guess we need to add Apache ECharts (incubating) to
https://twitter.com/EChartsJs and https://www.weibo.com/echarts . Anything
else we need to pay special attention to?

(7) These logging files are used for tracking website access, exactly as
Google Analytics. Would that be illegal?

(8) As about "Top links are not coming from the Apache repos", where is
this "
https://raw.githubusercontent.com/ecomfe/echarts/4.1.0/dist/echarts.simple.min.js
"?

Zhang Wenli
http://zhangwenli.com


On Wed, Feb 20, 2019 at 11:38 AM Ovilia  wrote:

> Thanks Dave for your detailed request.
> We will work on it and keep you posted.
>
> Zhang Wenli
> http://zhangwenli.com
>
>
> On Wed, Feb 20, 2019 at 6:15 AM Dave Fisher  wrote:
>
>> I wanted to provide guidance on moving the ECharts website to Apache.
>> Both the Chinese site and the English site need to be hosted on the
>> echarts.apache.org domain and have the source stored in GitHub(GitBox)
>> in the apache/incubator-echarts-website repository. There is work to do and
>> that will include some that is mandated by Apache policies.
>>
>> (1) Move echarts.baidu.com . [1][3]
>>
>> The target here is likely to be something like echarts.apache.org/zh <
>> http://echarts.apache.org/zh> and echarts.apache.org/en <
>> http://echarts.apache.org/en> with echarts.apache.org/ <
>> http://echarts.apache.org/> being smart (or dumb) about picking the best
>> for the user. Once the project has that in place then a redirection rule
>> should be added to echarts.baidu.com  to
>> properly permanently redirect any url to the same resource on
>> echarts.apache.org .
>>
>> The IPMC expects to see movement on this via pull requests soon. If there
>> are any differences in support between the Baidu served site and what
>> Apache provides then please let us ASAP.
>>
>> (2) Required navigation links for Apache Projects. [2]
>>
>> You must include links to www.apache.org  along
>> with the Apache License and other requirements. See [2]
>>
>> (3) Proper attribution of trademarks is required. [4]
>>
>> You have this mostly correct on the English site.
>>
>> (4) The Download page needs to follow release distribution policy [5]
>>
>> Specifically, you must describe where to find the release using the
>> Apache mirror system. This mirrors
>> https://dist.apache.org/repos/dist/release/incubator/echarts/ <
>> https://dist.apache.org/repos/dist/release/incubator/echarts/> and a LUA
>> file is provided to select the closest mirror. You must point to the KEYS
>> file and describe how to verify the download using the asc, and sha512
>> found there.
>>
>> Also, once the Release is approved the RC artifacts should be renamed to
>> remove the RC designation.
>>
>> (5) Who is responsible for these resources and if it is the PPMC then
>> each will need discussion.
>>
>> (a) https://gallery.echartsjs.com/editor.html <
>> https://gallery.echartsjs.com/editor.html>
>> (b) https://twitter.com/EChartsJs  (where
>> there’s no indication it’s an ASF project and links to ecomfe.github.io <
>> http://ecomfe.github.io/>)
>> (c) https://www.weibo.com/echarts 
>> (similar)
>>
>> (6) Links and pages.
>>
>> (a) At the bottom of the main page the link is to a Baidu.com mailing
>> list. This must be changed to point users and developers to
>> dev@echarts.apache.org .
>> (b) Also the GitHub link must point directly to
>> https://github.com/apache/incubator-echarts/ <
>> https://github.com/apache/incubator-echarts/>
>> (c) On the builder.html the email capture should be replaced with
>> information or link to the project mailing list page.
>> (d) Contributions and FAQ page should include references to the mailing
>> lists.
>> (e) Top 

[GitHub] echarts-robot[bot] commented on issue #9967: 可以给个echart2.0版本吗 到处下载不到 谢谢了

2019-02-21 Thread GitBox
echarts-robot[bot] commented on issue #9967: 可以给个echart2.0版本吗 到处下载不到 谢谢了
URL: 
https://github.com/apache/incubator-echarts/issues/9967#issuecomment-465919967
 
 
   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.
   
   这个 issue 未使用 [issue 
模板](https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn) 创建,所以我将关闭此 issue。
   为此带来的麻烦我深表歉意,但是请理解这是为了节约社区维护者的时间,以更高效地服务社区的开发者群体。
   如果您愿意,可以请使用 issue 模板重新创建 issue。


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] echarts-robot[bot] closed issue #9967: 可以给个echart2.0版本吗 到处下载不到 谢谢了

2019-02-21 Thread GitBox
echarts-robot[bot] closed issue #9967: 可以给个echart2.0版本吗 到处下载不到 谢谢了
URL: https://github.com/apache/incubator-echarts/issues/9967
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] congjianan opened a new issue #9967: 可以给个echart2.0版本吗 到处下载不到 谢谢了

2019-02-21 Thread GitBox
congjianan opened a new issue #9967: 可以给个echart2.0版本吗 到处下载不到 谢谢了
URL: https://github.com/apache/incubator-echarts/issues/9967
 
 
   
   
   This issue is not created by 
[echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will 
be soon closed.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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