Re: Nominating cuijian-dexter as new committer of incubator-echarts

2019-01-09 Thread Dave Fisher
Hi -

Nominations to Committer and PMC membership are handled on the private@echarts 
mailing list in order to avoid any embarrassment if anyone has a concern. 
Concerns could be trivial like I’d like to make sure that the person has 
provided a good code review or have they provided sustained help on the mailing 
list.

Discussing what criteria ought to qualify a person to be seriously considered 
can certainly be discussed on dev@echarts.

Regards,
Dave

Sent from my iPhone

> On Jan 8, 2019, at 10:26 PM, Ovilia  wrote:
> 
> Dear all,
> 
> I would like to nominate @cuijian-dexter  
> to
> be our first new committer of incubator-echarts project, who has been
> continuously contributing both to the repo and the community over the past
> several months.
> 
> 
> *Main Contributions*
> 
> 1. He has contributed four pull requests
> 
> by now, three of which have already been merged, and the other one under
> review.
> Take his first PR #8759
>  as example, he
> provided a new funnel layout policy, which enables displaying text inside
> funnels on the left or right side. This could be helpful to others who have
> such chart design.
> During the process of reviewing the PR, he behaved in a well open-minded
> way, quick to response, and willing to help.
> 
> 2. He's also quite active and helpful in issue discussions and helped
> others to solve problems.
> For example, in #9281
> , he made an
> online demo to help the author solve the problem.
> 
> A full list of contributions may be found here
> 
> .
> 
> 
> In conclusion, I would like to nominate him as our new committer, both to
> thank him for the contribution to the community, and also to encourage him
> and other contributors like him to help the community grow.
> 
> Please give your opinion and +1 if you agree.
> 
> Zhang Wenli
> http://zhangwenli.com


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



[GitHub] Ovilia commented on issue #9728: 饼图的两个模块没加载出来

2019-01-09 Thread GitBox
Ovilia commented on issue #9728: 饼图的两个模块没加载出来
URL: 
https://github.com/apache/incubator-echarts/issues/9728#issuecomment-452994173
 
 
   Thanks for report. This is a problem caused recently due to our HTTPS 
support. We will fix it ASAP.


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 #9727: I cant't find "echarts.setCanvasCreator" in the document, Is there any documentation on how to use it?

2019-01-09 Thread GitBox
Ovilia commented on issue #9727: I cant't find "echarts.setCanvasCreator" in 
the document,Is there any documentation on how to use it?
URL: 
https://github.com/apache/incubator-echarts/issues/9727#issuecomment-452993357
 
 
   Hi. This interface is not in the doc because it is generally not supposed to 
be used by common developers. It is used for environment similar to HTML 
Canvas, but not quite the same. For example, for Wechat application and so on. 
The parameter is a wrapper of Canvas, matching normal HTML Canvas interfaces to 
a modified one. See [how Wechat application uses 
it](https://github.com/ecomfe/echarts-for-weixin/blob/master/ec-canvas/ec-canvas.js#L50).
   
   In your case, you just need to pass Canvas element to 
[init](http://echarts.apache.org/api.html#echarts.init).
   
   ```js
   var canvas = document.getElementById('myCanvas');
   var chart = echarts.init(canvas);
   ```
   


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] luogeng2017 edited a comment on issue #9730: Axis text color change api

2019-01-09 Thread GitBox
luogeng2017 edited a comment on issue #9730: Axis text color change api
URL: 
https://github.com/apache/incubator-echarts/issues/9730#issuecomment-452992163
 
 
   这样会不会造成图表的闪烁(重绘)?
   貌似echarts的鼠标监听是图(canvas)上,怎么能监听到轴文字上


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 #9726: echarts地图坐标体系采用的是什么坐标体系,如何不是WGS84坐标如何进行转换?

2019-01-09 Thread GitBox
Ovilia commented on issue #9726: echarts地图坐标体系采用的是什么坐标体系,如何不是WGS84坐标如何进行转换?
URL: 
https://github.com/apache/incubator-echarts/issues/9726#issuecomment-452992195
 
 
   
具体我不是很清楚,看看这个有没有帮助?https://github.com/apache/incubator-echarts/blob/8eeb7e5abe207d0536c62ce1f4ddecc6adfdf85e/src/util/mapData/rawData/encode.js
   @pissang @100pah 回答一下~


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] luogeng2017 commented on issue #9730: Axis text color change api

2019-01-09 Thread GitBox
luogeng2017 commented on issue #9730: Axis text color change api
URL: 
https://github.com/apache/incubator-echarts/issues/9730#issuecomment-452992163
 
 
   这样会不会造成图表的闪烁(重绘)?


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] pwxyz commented on issue #7860: 3d 地图,chart.on( 'click', function... ) ,点击地图无反应

2019-01-09 Thread GitBox
pwxyz commented on issue #7860: 3d 地图,chart.on( 'click', function... ) ,点击地图无反应
URL: 
https://github.com/apache/incubator-echarts/issues/7860#issuecomment-452991733
 
 
   目前为止,echarts v4.2.0-rc.2, echarts-gl  v1.1.1  geo3D中 单击事件还是无效


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 #9730: Axis text color change api

2019-01-09 Thread GitBox
Ovilia commented on issue #9730: Axis text color change api
URL: 
https://github.com/apache/incubator-echarts/issues/9730#issuecomment-452991584
 
 
   调用 setOption https://echarts.baidu.com/option.html#yAxis.axisLabel.color


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 closed issue #9731: 安卓环境截图必须关闭硬件加速,否则截图空白

2019-01-09 Thread GitBox
Ovilia closed issue #9731: 安卓环境截图必须关闭硬件加速,否则截图空白
URL: https://github.com/apache/incubator-echarts/issues/9731
 
 
   


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 #9731: 安卓环境截图必须关闭硬件加速,否则截图空白

2019-01-09 Thread GitBox
Ovilia commented on issue #9731: 安卓环境截图必须关闭硬件加速,否则截图空白
URL: 
https://github.com/apache/incubator-echarts/issues/9731#issuecomment-452991312
 
 
   请到 native-echarts 提问~


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] TobyCheung opened a new issue #9731: 安卓环境截图必须关闭硬件加速,否则截图空白

2019-01-09 Thread GitBox
TobyCheung opened a new issue #9731: 安卓环境截图必须关闭硬件加速,否则截图空白
URL: https://github.com/apache/incubator-echarts/issues/9731
 
 
   
   
   
   ## General Questions
   
   
   
   
   
   
   
   
   ## Issue Type
   
   
   
   - [ ] I have a question to ask about *how to use ECharts to ...*;我想提问如何使用 
ECharts 实现某功能
   - [ ] I have a bug to report;我想要报 bug
   - [ ] I have a feature to request, e.g.: *I'd like a new feature that 
...*;我需要一个新功能
   - [x ] I have a feature to enhance, e.g.: *The current feature should be 
improved in the way that ...*;我希望改进某个功能
   - [ ] There's something wrong with the documents;文档有些问题
   - [ ] Others, or I'm not sure which issue types to choose 
here;其他,或我不知道应该选什么类型
   
   
   ## Issue Details
   
   
   
   安卓环境截图必须关闭硬件加速,否则截图空白
   
   
   ### Expected Behavior
   
   
   
   安卓环境关闭硬件加速后可以截取到图表
   
   
   ### Current Behavior
   
   
   
   安卓环境关闭硬件加速后无法截取到图表
   
   
   ### Online Example
   
   
   
   
   
   
   
   
   import Echarts from 'native-echarts';
   import ViewShot from 'react-native-view-shot';
   
   Let option = 
{"tooltip":{"trigger":"axis"},"legend":{"data":[{"name":"日低点($)","icon":"circle"},{"name":"开盘价($)","icon":"circle"},{"name":"收盘价($)","icon":"circle"}],"itemWidth":8,"itemHeight":8,"itemGap":15,"top":15},"color":["#008610","#fe4c2c","#33bbff"],"grid":{"top":50,"left":50,"bottom":40,"right":25},"xAxis":{"type":"category","boundaryGap":false,"data":["10-11","10-12","10-15","10-16","10-18","10-19","10-22","10-23","10-24","10-25","10-26","10-29","10-30","10-31","11-01","11-02","11-05","11-06","11-07","11-08","11-09","11-12","11-13","11-14","11-15","11-16","11-19","11-20","11-21","11-22","11-23","11-26","11-27","11-28","11-29","11-30","12-03","12-04","12-05","12-06","12-07","12-10","12-11","12-12","12-13","12-14","12-17","12-18","12-19","12-20","12-21","12-24","12-27","12-28","12-31","01-02","01-03","01-04","01-07","01-08","01-09"],"splitNumber":5,"splitLine":{"show":true}},"yAxis":[{"type":"value","min":2.01,"max":"3.99","interval":0.33,"axisLabel":{}}],"series":[{"name":"日低点($)","type":"line","data":[3.5,3.5,3.5,3.5,3.4,3.4,3.4,3.4,3.35,3.35,3.35,3.35,3.3,3.3,3.3,3.3,3.25,3.2,3.2,3.2,3.1,3.1,3.1,3.05,3.05,3.05,3.05,3.05,3,3,3,3,3,3,3,3,3,2.98,2.98,2.98,2.97,2.97,2.97,2.97,2.97,2.97,2.95,2.94,2.94,2.92,2.9,2.9,2.88,2.85,2.8,2.7,2.6,2.6,2.6,2.6,2.6],"symbol":"circle","symbolSize":4,"itemStyle":{"normal":{"lineStyle":{"width":1,{"name":"开盘价($)","type":"line","data":[3.55,3.5,3.5,3.5,3.5,3.4,3.4,3.4,3.35,3.35,3.35,3.35,3.3,3.3,3.3,3.3,3.25,3.2,3.2,3.2,3.15,3.1,3.1,3.05,3.05,3.05,3.05,3.05,3.02,3,3,3,3,3,3,3,3,2.98,2.98,2.98,2.97,2.97,2.97,2.97,2.97,2.97,2.97,2.94,2.94,2.92,2.92,2.9,2.88,2.85,2.8,2.75,2.65,2.6,2.6,2.6,2.6],"symbol":"circle","symbolSize":4,"itemStyle":{"normal":{"lineStyle":{"width":1,{"name":"收盘价($)","type":"line","data":[3.5,3.5,3.5,3.5,3.4,3.4,3.4,3.4,3.35,3.35,3.35,3.35,3.3,3.3,3.3,3.3,3.25,3.2,3.2,3.2,3.1,3.1,3.1,3.05,3.05,3.05,3.05,3.05,3,3,3,3,3,3,3,3,3,2.98,2.98,2.98,2.97,2.97,2.97,2.97,2.97,2.97,2.95,2.94,2.94,2.92,2.9,2.9,2.88,2.85,2.8,2.7,2.6,2.6,2.6,2.6,2.6],"symbol":"circle","symbolSize":4,"itemStyle":{"normal":{"lineStyle":{"width":1],"animation":false};
   
   let chart = (
   
   );
   
   let priceTrend = (
   
this.scrollableTabBar = 
scrollableTabBar}
   tabs={this.priceTrendTabs}
   activeTab={this.trendRange}
   activeTextColor={'#24b5fe'}
   inactiveTextColor={'#4c4c4c'}
   fontSize={scaleSize(28)}
   onTabClick={(index) => {
   this._onTrendTabClick(index)
   }}
   containerWidth={screenW - 135}
   containerHeight={scaleSize(93)}
   scrollEnabled={false}
   />
   }
   />
   
   { chart}
   
   )
   
   let shareBoard = (

 this.shareView = r}
 options={{format:"jpg", quality:1.0}}
 >





{topViewShare}

{priceView}

{priceView1}
{priceTrend}








 
   );
   
   _shareIOS = () => {
this.shareView.capture()
  .then(uri => {
  console.log('uri:'+uri);
 

[GitHub] luogeng2017 opened a new issue #9730: Axis text color change api

2019-01-09 Thread GitBox
luogeng2017 opened a new issue #9730: Axis text color change api
URL: https://github.com/apache/incubator-echarts/issues/9730
 
 
   
   
   
   ## General Questions
   
   
   
   
   
   
   
   
   ## Issue Type
   
   
   
   - [ ] I have a question to ask about *how to use ECharts to ...*;我想提问如何使用 
ECharts 实现某功能
   - [ ] I have a bug to report;我想要报 bug
   - [ ] I have a feature to request, e.g.: *I'd like a new feature that 
...*;我需要一个新功能
   - [ ] I have a feature to enhance, e.g.: *The current feature should be 
improved in the way that ...*;我希望改进某个功能
   - [ ] There's something wrong with the documents;文档有些问题
   - [ ] Others, or I'm not sure which issue types to choose 
here;其他,或我不知道应该选什么类型
   
   
   ## Issue Details
   
   
   
   
   
   
   ### Expected Behavior
   
   
   
   
   
   
   ### Current Behavior
   
   
   
   
   
   
   ### Online Example
   
   
   
   
   
   
   
   
   
   
   
   ## Topics
   
   
   
   ## Anything Else We Need to Know
   
   
   
   
   
   
   ## Environment
   
   - ECharts version;ECharts 版本: {DESCRIBE_HERE}
   
   - [ ] It happens only on certain browsers or operating systems. 
对于特定浏览器或操作系统才会出现的问题,请提供相应环境信息:{BROWSER_VERSION_OR_OS_INFORMATION_HERE}
   


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 closed issue #9709: How to make the line symbol different for each point and make the mark line style different for each line?

2019-01-09 Thread GitBox
Ovilia closed issue #9709: How to make the line symbol different for each point 
and make the mark line style different for each line?
URL: https://github.com/apache/incubator-echarts/issues/9709
 
 
   


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] creatworld opened a new issue #9729: 如何在scatter3D中使用png类型的symbol?

2019-01-09 Thread GitBox
creatworld opened a new issue #9729: 如何在scatter3D中使用png类型的symbol?
URL: https://github.com/apache/incubator-echarts/issues/9729
 
 
   
   
   
   ## General Questions
   
   
   
   
   
   
   
   
   ## Issue Type
   
   
   
   - [ ] I have a question to ask about *how to use ECharts to ...*;我想提问如何使用 
ECharts 实现某功能
   - [ ] I have a bug to report;我想要报 bug
   - [ ] I have a feature to request, e.g.: *I'd like a new feature that 
...*;我需要一个新功能
   - [ ] I have a feature to enhance, e.g.: *The current feature should be 
improved in the way that ...*;我希望改进某个功能
   - [ ] There's something wrong with the documents;文档有些问题
   - [x] Others, or I'm not sure which issue types to choose 
here;其他,或我不知道应该选什么类型
   
   
   ## Issue Details
   
   
   如何在scatter3D中使用png类型的symbol?
   
   
   
   ### Expected Behavior
   
   
   在3DMap中显示一个坐标,坐标的symbol需要使用特定的图片。
   
   
   
   ### Current Behavior
   
   
   可以显示图片的轮廓,但是图片的颜色被替换成了半透明。
   
![image](https://user-images.githubusercontent.com/18473940/50949317-aa114880-14e0-11e9-985c-50acde228582.png)
   
   
   
   
   ### Online Example
   
   
   
   
   
   
   
   
   
   
   
   ## Topics
   
   
   
   ## Anything Else We Need to Know
   
   
   
   
   
   
   ## Environment
   
   - ECharts version;ECharts 版本: {DESCRIBE_HERE}
   
   - [ ] It happens only on certain browsers or operating systems. 
对于特定浏览器或操作系统才会出现的问题,请提供相应环境信息:{BROWSER_VERSION_OR_OS_INFORMATION_HERE}
   


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: Nominating cuijian-dexter as new committer of incubator-echarts

2019-01-09 Thread Yi Shen
+1 (binding)

Ovilia  于2019年1月9日周三 下午2:26写道:

> Dear all,
>
> I would like to nominate @cuijian-dexter <
> https://github.com/cuijian-dexter> to
> be our first new committer of incubator-echarts project, who has been
> continuously contributing both to the repo and the community over the past
> several months.
>
>
> *Main Contributions*
>
> 1. He has contributed four pull requests
> <
> https://github.com/apache/incubator-echarts/pulls?utf8=%E2%9C%93=is%3Apr+cuijian-dexter+
> >
> by now, three of which have already been merged, and the other one under
> review.
> Take his first PR #8759
>  as example, he
> provided a new funnel layout policy, which enables displaying text inside
> funnels on the left or right side. This could be helpful to others who have
> such chart design.
> During the process of reviewing the PR, he behaved in a well open-minded
> way, quick to response, and willing to help.
>
> 2. He's also quite active and helpful in issue discussions and helped
> others to solve problems.
> For example, in #9281
> , he made an
> online demo to help the author solve the problem.
>
> A full list of contributions may be found here
> <
> https://github.com/apache/incubator-echarts/search?q=cuijian-dexter=Issues
> >
> .
>
>
> In conclusion, I would like to nominate him as our new committer, both to
> thank him for the contribution to the community, and also to encourage him
> and other contributors like him to help the community grow.
>
> Please give your opinion and +1 if you agree.
>
> Zhang Wenli
> http://zhangwenli.com
>


-- 
Yi Shen
Senior Developer
Baidu, Inc.


[GitHub] zhupengxiang commented on issue #4276: echarts能在Android上使用吗?

2019-01-09 Thread GitBox
zhupengxiang commented on issue #4276: echarts能在Android上使用吗?
URL: 
https://github.com/apache/incubator-echarts/issues/4276#issuecomment-452963981
 
 
   怎么在android端使用echarts


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] FEShuai commented on issue #7485: 请问:graph除了重绘setoption可以怎样更新option数据?

2019-01-09 Thread GitBox
FEShuai commented on issue #7485: 请问:graph除了重绘setoption可以怎样更新option数据?
URL: 
https://github.com/apache/incubator-echarts/issues/7485#issuecomment-452962952
 
 
   您最后有解决方案吗?


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] xiaohan2013 commented on issue #4290: 有没有完整的俄罗斯的图的json或者js文件?(就像中国地图那样的全国地图)世界地图中的俄罗斯地图被分成两块了

2019-01-09 Thread GitBox
xiaohan2013 commented on issue #4290: 
有没有完整的俄罗斯的图的json或者js文件?(就像中国地图那样的全国地图)世界地图中的俄罗斯地图被分成两块了
URL: 
https://github.com/apache/incubator-echarts/issues/4290#issuecomment-452962950
 
 
同样的问题,怎样这两块拼起来。世界地图的js文件有没有压缩混淆的吗?
   
   


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] guinguo commented on issue #9728: 饼图的两个模块没加载出来

2019-01-09 Thread GitBox
guinguo commented on issue #9728: 饼图的两个模块没加载出来
URL: 
https://github.com/apache/incubator-echarts/issues/9728#issuecomment-452957702
 
 
   貌似左侧导航的多个页面进去都是有一个白板,没加载出来,看起来是同一个问题导致的


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] guinguo opened a new issue #9728: 饼图的两个模块没加载出来

2019-01-09 Thread GitBox
guinguo opened a new issue #9728: 饼图的两个模块没加载出来
URL: https://github.com/apache/incubator-echarts/issues/9728
 
 
   这个页面报错了,https://vis.baidu.com/chartusage/pie/  
   
   ```
   
   Mixed Content: The page at 'https://vis.baidu.com/chartusage/pie/' was 
loaded over HTTPS, but requested an insecure stylesheet 
'http://lib.baomitu.com/Swiper/3.4.2/css/swiper.css'. This request has been 
blocked; the content must be served over HTTPS.
   docsearch.min.js:2 Uncaught Error: Error: No input element in the page 
matches #san-query-input
   at Function.checkArguments (docsearch.min.js:2)
   at new DocSearch (docsearch.min.js:2)
   at Factory (docsearch.min.js:2)
   at (index):128
   ```
   
   给人一种停止维护的感觉,体验不是很好


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] AYWK opened a new issue #9727: I cant't find "echarts.setCanvasCreator" in the document, Is there any documentation on how to use it?

2019-01-09 Thread GitBox
AYWK opened a new issue #9727: I cant't find "echarts.setCanvasCreator" in the 
document,Is there any documentation on how to use it?
URL: https://github.com/apache/incubator-echarts/issues/9727
 
 
   I'm going to use canvas container to create echarts. I see many people using 
"echarts.setCanvasCreator" on the Internet, but I can't find the related 
documents. Could you please help me?
   Thank you very much。


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] wmjcom commented on issue #9717: How to set the background color of the area inside axises different to all backgrournd color?

2019-01-09 Thread GitBox
wmjcom commented on issue #9717: How to set the background color of the area 
inside axises different to all backgrournd color?
URL: 
https://github.com/apache/incubator-echarts/issues/9717#issuecomment-452945662
 
 
   @Ovilia It works with below codes. Thanks.
   grid:{
   backgroundColor: 'white',
   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] shanewds opened a new issue #9726: echarts地图坐标体系采用的是什么坐标体系,如何不是WGS84坐标如何进行转换?

2019-01-09 Thread GitBox
shanewds opened a new issue #9726: echarts地图坐标体系采用的是什么坐标体系,如何不是WGS84坐标如何进行转换?
URL: https://github.com/apache/incubator-echarts/issues/9726
 
 
   官网实例图
   https://user-images.githubusercontent.com/19984920/50940798-50e3ed80-14bd-11e9-9df2-259dec2fba8c.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] alimohti opened a new issue #9725: Arrow indicator color is not reflecting the correct band

2019-01-09 Thread GitBox
alimohti opened a new issue #9725: Arrow indicator color is not reflecting the 
correct band
URL: https://github.com/apache/incubator-echarts/issues/9725
 
 
   I am creating a gauge using the following settings for my series to 
implement the RTL simulate the RTL feature, the gauge is shown correctly 
instead for the arrow indicator color, that is not reflecting the band, for 
example if the value is 15 and it falls under the first band (red color) the 
indicator arrow is colored in green (the opposite band)
   
   check the below link
   
   [https://jsfiddle.net/alimohti/1Lc80xfk/40/](url)
   
   settings:
   min:100,
   max:0,
   startAngle:0,
   endAngle:180,
   clockwise: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] cxm1011 opened a new issue #9724: echarts在小程序中图形放大问题

2019-01-09 Thread GitBox
cxm1011 opened a new issue #9724: echarts在小程序中图形放大问题
URL: https://github.com/apache/incubator-echarts/issues/9724
 
 
   按照echarts上小程序的文档,当我使用 
   ec: {
 onInit: initChart
}
   初始化地图后,通过预览模式,在手机上发现不能通过手势放大地图,想问下有解决方法吗?


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 #8997: Pie chart adds filterValue parameter

2019-01-09 Thread GitBox
100pah commented on issue #8997: Pie chart adds filterValue parameter
URL: 
https://github.com/apache/incubator-echarts/pull/8997#issuecomment-452719782
 
 
   @cuijian-dexter Sorry for my late reply.
   I have merged this PR. But something related is needed to be refactored 
(including this feature and some old feature). I will try to do it soon.


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] xerxes3117 opened a new issue #9723: xAxis rotate unhides the axis labels only with small window width

2019-01-09 Thread GitBox
xerxes3117 opened a new issue #9723: xAxis rotate unhides the axis labels only 
with small window width
URL: https://github.com/apache/incubator-echarts/issues/9723
 
 
   ### Version & Environment [Version & Environment]
   
   - ECharts version [ECharts version]: 4.0
   - Browser version [browser type and version]: chrome
   - OS Version [operating system type and version]: windows 10
   
   ### One-line summary [Question Brief]
   I'm trying to rotate the labels to unhide the x axis labels. I want to 
rotate the labels based on some conditions so I do this after initially setting 
the options (using setTimeout). The labels rotate works but the issue is that 
labels are not unhidden. Additionally, after some tinkering I found a weird 
behavior. This issue is not present if the container window is small.
   
   ### Expected behaviour [expected result]
   Axis labels should be unhidden in both cases.
   
   ### ECharts option [ECharts configuration item] 
   ```
   option = {
   xAxis: {
   type: 'category',
   axisTick: {
 alignWithLabel: true  
   },
   data: [
 'Campaign 1'
   , 'Campaign 2'
   , 'Campaign 3'
   , 'Campaign 4'
   , 'Campaign 5'
   , 'Campaign 6'
   , 'Campaign 7'
   , 'Campaign 8'
   , 'Campaign 9'
   , 'Campaign 10'
   ],
   },
   yAxis: {
   type: 'value'
   },
   series: [{
   data: [820, 932, 901, 934, 1290, 1330, 1320, 1320, 732, 920, ],
   type: 'line'
   }]
   };
   
   setTimeout(function () {
 
   myChart.setOption({
   xAxis: {
   axisLabel: {
rotate: '35'   
   }
   }
   });
   
   });
   ```
   ### Other comments [Other Information]
   Attaching the images for both cases:
   **Case 1 : When window size is large**
   
![untitled](https://user-images.githubusercontent.com/24941920/50905133-19872980-1448-11e9-95dc-8eb5220489e0.jpg)
   
   
   **Case 2 : When window size is small**
   
![untitled1](https://user-images.githubusercontent.com/24941920/50905142-1e4bdd80-1448-11e9-9d39-d98d912eb222.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



Re: Nominating cuijian-dexter as new committer of incubator-echarts

2019-01-09 Thread SHUANG SU
+1 (binding)

--
 Su Shuang (100pah)
--



On Wed, 9 Jan 2019 at 14:26, Ovilia  wrote:

> Dear all,
>
> I would like to nominate @cuijian-dexter <
> https://github.com/cuijian-dexter> to
> be our first new committer of incubator-echarts project, who has been
> continuously contributing both to the repo and the community over the past
> several months.
>
>
> *Main Contributions*
>
> 1. He has contributed four pull requests
> <
> https://github.com/apache/incubator-echarts/pulls?utf8=%E2%9C%93=is%3Apr+cuijian-dexter+
> >
> by now, three of which have already been merged, and the other one under
> review.
> Take his first PR #8759
>  as example, he
> provided a new funnel layout policy, which enables displaying text inside
> funnels on the left or right side. This could be helpful to others who have
> such chart design.
> During the process of reviewing the PR, he behaved in a well open-minded
> way, quick to response, and willing to help.
>
> 2. He's also quite active and helpful in issue discussions and helped
> others to solve problems.
> For example, in #9281
> , he made an
> online demo to help the author solve the problem.
>
> A full list of contributions may be found here
> <
> https://github.com/apache/incubator-echarts/search?q=cuijian-dexter=Issues
> >
> .
>
>
> In conclusion, I would like to nominate him as our new committer, both to
> thank him for the contribution to the community, and also to encourage him
> and other contributors like him to help the community grow.
>
> Please give your opinion and +1 if you agree.
>
> Zhang Wenli
> http://zhangwenli.com
>


[GitHub] 100pah closed pull request #8997: Pie chart adds filterValue parameter

2019-01-09 Thread GitBox
100pah closed pull request #8997: Pie chart adds filterValue parameter
URL: https://github.com/apache/incubator-echarts/pull/8997
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/src/chart/pie/PieView.js b/src/chart/pie/PieView.js
index 84697f598..3ed3b0cb5 100644
--- a/src/chart/pie/PieView.js
+++ b/src/chart/pie/PieView.js
@@ -94,6 +94,9 @@ function PiePiece(data, idx) {
 this.add(sector);
 this.add(polyline);
 this.add(text);
+
+var valueDim = data.mapDimension('value');
+this._sum = data.getSum(valueDim) || 0;
 
 this.updateData(data, idx, true);
 
@@ -211,6 +214,13 @@ piePieceProto.updateData = function (data, idx, 
firstCreate) {
 graphic.setHoverStyle(this);
 };
 
+piePieceProto._getLabelDisplayThresholdState = function (data, idx) {
+var seriesModel = data.hostModel;
+var valueDim = data.mapDimension('value');
+var labelDisplayThreshold = seriesModel.get('labelDisplayThreshold');
+return this._sum * labelDisplayThreshold > data.get(valueDim, idx);
+}
+
 piePieceProto._updateLabel = function (data, idx) {
 
 var labelLine = this.childAt(1);
@@ -221,6 +231,7 @@ piePieceProto._updateLabel = function (data, idx) {
 var layout = data.getItemLayout(idx);
 var labelLayout = layout.label;
 var visualColor = data.getItemVisual(idx, 'color');
+var filterLabelIgnore = this._getLabelDisplayThresholdState(data, idx);
 
 graphic.updateProps(labelLine, {
 shape: {
@@ -264,11 +275,11 @@ piePieceProto._updateLabel = function (data, idx) {
 }
 );
 
-labelText.ignore = labelText.normalIgnore = !labelModel.get('show');
-labelText.hoverIgnore = !labelHoverModel.get('show');
+labelText.ignore = labelText.normalIgnore = !labelModel.get('show') || 
filterLabelIgnore;
+labelText.hoverIgnore = !labelHoverModel.get('show') || filterLabelIgnore;
 
-labelLine.ignore = labelLine.normalIgnore = !labelLineModel.get('show');
-labelLine.hoverIgnore = !labelLineHoverModel.get('show');
+labelLine.ignore = labelLine.normalIgnore = !labelLineModel.get('show') || 
filterLabelIgnore;
+labelLine.hoverIgnore = !labelLineHoverModel.get('show') || 
filterLabelIgnore;
 
 // Default use item visual color
 labelLine.setStyle({
@@ -319,7 +330,6 @@ var PieView = ChartView.extend({
 );
 
 var selectedMode = seriesModel.get('selectedMode');
-
 data.diff(oldData)
 .add(function (idx) {
 var piePiece = new PiePiece(data, idx);
@@ -411,4 +421,4 @@ var PieView = ChartView.extend({
 
 });
 
-export default PieView;
\ No newline at end of file
+export default PieView;


 


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] cuijian-dexter commented on issue #9720: 图表很大时,tooltip有时候会超出屏幕,因为tooltip以父类div定位,所以当页面滚动到一定位置时tooltip会超出屏幕

2019-01-09 Thread GitBox
cuijian-dexter commented on issue #9720: 
图表很大时,tooltip有时候会超出屏幕,因为tooltip以父类div定位,所以当页面滚动到一定位置时tooltip会超出屏幕
URL: 
https://github.com/apache/incubator-echarts/issues/9720#issuecomment-452684781
 
 
   Do you want to limit tooltip to the area of the chart?
   https://echarts.baidu.com/option.html#tooltip.confine


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] jiankebe commented on issue #9722: 柱状图叠加问题,当barGap设置为-100%产生叠加效果,如果视图的宽度小的时候会以为有问题

2019-01-09 Thread GitBox
jiankebe commented on issue #9722: 
柱状图叠加问题,当barGap设置为-100%产生叠加效果,如果视图的宽度小的时候会以为有问题
URL: 
https://github.com/apache/incubator-echarts/issues/9722#issuecomment-452673650
 
 
   [](url)
   https://user-images.githubusercontent.com/7916816/50898343-d5952400-1449-11e9-8950-db6d174869d2.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] jiankebe commented on issue #9722: 柱状图叠加问题,当barGap设置为-100%产生叠加效果,如果视图的宽度小的时候会以为有问题

2019-01-09 Thread GitBox
jiankebe commented on issue #9722: 
柱状图叠加问题,当barGap设置为-100%产生叠加效果,如果视图的宽度小的时候会以为有问题
URL: 
https://github.com/apache/incubator-echarts/issues/9722#issuecomment-452673361
 
 
   series: [
   {
   type: 'bar',
   barMaxWidth: 16,
   barMinWidth: 8,
   barMinHeight: 18,
   barCategoryGap: 1,
   itemStyle: {
   normal: {
   color: '#6BCCB2'
   }
   },
   data: yData
   },
   {
   type: 'bar',
   barMaxWidth: 16,
   barMinWidth: 8,
   barMinHeight: 18,
   barCategoryGap: 1,
   itemStyle: {
   normal: {
   color: '#47A98E'
   }
   },
   data: selected
   },
   {
   type: 'bar',
   barMaxWidth: 16,
   barMinWidth: 8,
   barMinHeight: 74,
   barCategoryGap: 1,
   itemStyle: {
   normal: {
   color: '#ff',
   opacity: 0
   }
   },
   data: yData
   }
   ]
   参数设置


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] jiankebe opened a new issue #9722: 柱状图叠加问题,当barGap设置为-100%产生叠加效果,如果视图的宽度小的时候会以为有问题

2019-01-09 Thread GitBox
jiankebe opened a new issue #9722: 
柱状图叠加问题,当barGap设置为-100%产生叠加效果,如果视图的宽度小的时候会以为有问题
URL: https://github.com/apache/incubator-echarts/issues/9722
 
 
   
   
   
   ## General Questions
   
   
   
   
   
   
   
   
   ## Issue Type
   
   
   
   - [ ] I have a question to ask about *how to use ECharts to ...*;我想提问如何使用 
ECharts 实现某功能
   - [ ] I have a bug to report;我想要报 bug
   - [ ] I have a feature to request, e.g.: *I'd like a new feature that 
...*;我需要一个新功能
   - [ ] I have a feature to enhance, e.g.: *The current feature should be 
improved in the way that ...*;我希望改进某个功能
   - [ ] There's something wrong with the documents;文档有些问题
   - [ ] Others, or I'm not sure which issue types to choose 
here;其他,或我不知道应该选什么类型
   
   
   ## Issue Details
   
   
   
   
   
   
   ### Expected Behavior
   
   
   
   
   
   
   ### Current Behavior
   
   
   
   
   
   
   ### Online Example
   
   
   
   
   
   
   
   
   
   
   
   ## Topics
   
   
   
   ## Anything Else We Need to Know
   
   
   
   
   
   
   ## Environment
   
   - ECharts version;ECharts 版本: {DESCRIBE_HERE}
   
   - [ ] It happens only on certain browsers or operating systems. 
对于特定浏览器或操作系统才会出现的问题,请提供相应环境信息:{BROWSER_VERSION_OR_OS_INFORMATION_HERE}
   


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] luanxinwei opened a new issue #9721: 折线图如何加入多个tooltip,并且可以选中多个一块拖动展示,急求

2019-01-09 Thread GitBox
luanxinwei opened a new issue #9721: 折线图如何加入多个tooltip,并且可以选中多个一块拖动展示,急求
URL: https://github.com/apache/incubator-echarts/issues/9721
 
 
I'd like a new feature
   
可以在曲线图中加入过个tooltip,就是类似于游标一样可以加入多个,可以选中其中的几个来回拖动,并且提示内容也跟着一块改变。正常曲线都是鼠标移动时候才会出现提示框,鼠标移除以后提示框跟着消失,我现在需要满足动态加入提示框,并且可以加入多个,可以一块移动。
 @pissang @100pah 


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] wangqipov opened a new issue #9720: 图表很大时,tooltip有时候会超出屏幕,因为tooltip以父类div定位,所以当页面滚动到一定位置时tooltip会超出屏幕

2019-01-09 Thread GitBox
wangqipov opened a new issue #9720: 
图表很大时,tooltip有时候会超出屏幕,因为tooltip以父类div定位,所以当页面滚动到一定位置时tooltip会超出屏幕
URL: https://github.com/apache/incubator-echarts/issues/9720
 
 
   图表很大时,tooltip有时候会超出屏幕,因为tooltip以父类div定位,所以当页面滚动到一定位置时tooltip会超出屏幕
   
![image](https://user-images.githubusercontent.com/25898498/50887007-f307c500-142c-11e9-897c-a020317a9a23.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] klausb commented on issue #6202: Problems when updating chart through echartsInstance.setOption()

2019-01-09 Thread GitBox
klausb commented on issue #6202: Problems when updating chart through 
echartsInstance.setOption()
URL: 
https://github.com/apache/incubator-echarts/issues/6202#issuecomment-452608324
 
 
   @ckz8780 
   Fully agree. Maybe someone can dig into the code, fix it and submit a pull 
request.


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