[GitHub] [incubator-echarts] mr2qin commented on issue #10365: echarts中文官网, 网站测试页面有一个js 加载失败, 无法正常测试

2019-04-25 Thread GitBox
mr2qin commented on issue #10365: echarts中文官网, 网站测试页面有一个js 加载失败, 无法正常测试
URL: 
https://github.com/apache/incubator-echarts/issues/10365#issuecomment-486935561
 
 
   Mixed Content: The page at 
'https://gallery.echartsjs.com/editor.html?c=xBJ11Hguze' was loaded over HTTPS, 
but requested an insecure script 
'http://data-visual.cn/datav/src/js/echarts/extension/echarts-wordcloud.min.js'.
 This request has been blocked; the content must be served over HTTPS.


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.
 
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] [incubator-echarts] mr2qin opened a new issue #10365: echarts中文官网, 网站测试页面有一个js 加载失败, 我发正常测试

2019-04-25 Thread GitBox
mr2qin opened a new issue #10365: echarts中文官网, 网站测试页面有一个js 加载失败, 我发正常测试
URL: https://github.com/apache/incubator-echarts/issues/10365
 
 
   ### Version
   4.2.1
   
   ### Reproduction link
   
[https://gallery.echartsjs.com/editor.html?c=xBJ11Hguze](https://gallery.echartsjs.com/editor.html?c=xBJ11Hguze)
   
   ### Steps to reproduce
   代开这个 https://gallery.echartsjs.com/editor.html?c=xBJ11Hguze, 示例页面就可以看到
   
   ### What is expected?
   正常测试wordcloud
   
   ### What is actually happening?
   
http://data-visual.cn/datav/src/js/echarts/extension/echarts-wordcloud.min.js 
加载失败
   
   
   


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.
 
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] [incubator-echarts] echarts-robot[bot] commented on issue #10365: echarts中文官网, 网站测试页面有一个js 加载失败, 我发正常测试

2019-04-25 Thread GitBox
echarts-robot[bot] commented on issue #10365: echarts中文官网, 网站测试页面有一个js 加载失败, 
我发正常测试
URL: 
https://github.com/apache/incubator-echarts/issues/10365#issuecomment-486932599
 
 
   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 to 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] [incubator-echarts] moumyu edited a comment on issue #3853: echarts event 事件问题

2019-04-25 Thread GitBox
moumyu edited a comment on issue #3853: echarts event 事件问题
URL: 
https://github.com/apache/incubator-echarts/issues/3853#issuecomment-486897467
 
 
   可以配合hideTip事件清空lastTipIndex
   ```javascript
   var lastTipIndex = null;
   chart.on('showTip', function(event) {
 lastTipIndex = event.dataIndex;
   });
   chart.on('hideTip',  function(event) {
 lastTipIndex = null;
   });
   chart.getZr().on('click', function() {
 if (dataIndex != null) {
   // 执行点击事件动作
 }
   });
   ```


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.
 
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] [incubator-echarts] moumyu edited a comment on issue #3853: echarts event 事件问题

2019-04-25 Thread GitBox
moumyu edited a comment on issue #3853: echarts event 事件问题
URL: 
https://github.com/apache/incubator-echarts/issues/3853#issuecomment-486897467
 
 
   可以配合hideTip事件清空lastTipIndex
   ```javascript
   var lastTipIndex = null;
   chart .on('showTip', function(event) {
 lastTipIndex = event.dataIndex;
   });
   chart .on('hideTip',  function(event) {
 lastTipIndex = null;
   });
   chart .getZr().on('click', function() {
 if (dataIndex != null) {
   // 执行点击事件动作
 }
   });
   ```


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.
 
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] [incubator-echarts] moumyu edited a comment on issue #3853: echarts event 事件问题

2019-04-25 Thread GitBox
moumyu edited a comment on issue #3853: echarts event 事件问题
URL: 
https://github.com/apache/incubator-echarts/issues/3853#issuecomment-486897467
 
 
   可以配合hideTip事件清空lastTipIndex
   ```javascript
   var lastTipIndex = null;
   chart .on('showTip', function(event) {
 lastTipIndex = event.dataIndex;
   });
   chart .on('hideTip',  function(event) {
 lastTipIndex = null;
   });
   chart .getZr().on('click', function() {
   if (dataIndex != null) {
 // 执行点击事件动作
   }
   });
   ```


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.
 
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] [incubator-echarts] moumyu commented on issue #3853: echarts event 事件问题

2019-04-25 Thread GitBox
moumyu commented on issue #3853: echarts event 事件问题
URL: 
https://github.com/apache/incubator-echarts/issues/3853#issuecomment-486897467
 
 
   可以配合hideTip事件清空lastTipIndex
   `
   var lastTipIndex = null;
   chart .on('showTip', function(event) {
 lastTipIndex = event.dataIndex;
   });
   chart .on('hideTip',  function(event) {
 lastTipIndex = null;
   });
   chart .getZr().on('click', function() {
   if (dataIndex != null) {
 // 执行点击事件动作
   }
   });
   `


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



CDN for echarts.apache.org

2019-04-25 Thread Kevin A. McGrail
All:

To help with the issues with speed for echarts.apache.org, Infra is
exploring CDN options and they have a viable option available at the
moment. I just need the green light and I can get you transferred if
that's okay.
   
Can you please let me know when the project is ready for this move? It
should happen without any downtime, but I would like the project to be
aware of the switch, so they can properly test the before and after.

In short, this will move you from standard TLP servers to a CDN solution
for echarts.apache.org.

It's an anycast CDN solution we're using. the pros should be much lower
latency outside of our usual EU/US areas (up to three times faster in
China, our tests show). The cons would be slower loading time for the
very first visitor, as it is a caching proxy, and that's about it.

This is a very manual process, and not something we can automate for all
TLPs, so this is, for now, a sort of one-off for echarts.


We are pretty much ready to go now, so whenever you wish, we can switch
over to the CDN (and it'll go live within an hour after that)

Recommendations:

1 - Please test the speed of echarts.apache.org now so we have a
baseline to compare
2 - Please take a vote on the PMC about moving to this CDN
3 - Please update
https://issues.apache.org/jira/browse/INFRA-18180?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel=16826230#comment-16826230
when/if your project greenlights the move

Regards,

KAM

-- 
Kevin A. McGrail
Member, Apache Software Foundation
Chair Emeritus Apache SpamAssassin Project
https://www.linkedin.com/in/kmcgrail - 703.798.0171


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



Website Speed Improvement

2019-04-25 Thread Dave Fisher
Hi -

Infrastructure is going to switch echarts.apache.org over to a CDN that will 
cache in China.

Please test latency now so that a comparison can be made after the switch over. 
The switch will occur in 7-8 hours.

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



[GitHub] [incubator-echarts] GarnixVai commented on issue #4880: 桑基图显示排序问题

2019-04-25 Thread GitBox
GarnixVai commented on issue #4880: 桑基图显示排序问题
URL: 
https://github.com/apache/incubator-echarts/issues/4880#issuecomment-486719621
 
 
   series.data順序一樣,但仍會因為links不同而有所變化,希望能依照data給的順序排列。


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.
 
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] [incubator-echarts] 524882178 commented on issue #7090: 求tree节点之间折线样式

2019-04-25 Thread GitBox
524882178 commented on issue #7090: 求tree节点之间折线样式
URL: 
https://github.com/apache/incubator-echarts/issues/7090#issuecomment-486686800
 
 
   2019年4月了~  还没有这个功能啊~~~


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.
 
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] [incubator-echarts] SeeFuturer removed a comment on issue #9190: Echarts 4.x 在线定制,graph图表渲染时会有透明度

2019-04-25 Thread GitBox
SeeFuturer removed a comment on issue #9190: Echarts 4.x 在线定制,graph图表渲染时会有透明度
URL: 
https://github.com/apache/incubator-echarts/issues/9190#issuecomment-486675882
 
 
   
![image](https://user-images.githubusercontent.com/25840609/56739814-3438a080-67a2-11e9-978e-f8f08d18565f.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.
 
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] [incubator-echarts] SeeFuturer commented on issue #9190: Echarts 4.x 在线定制,graph图表渲染时会有透明度

2019-04-25 Thread GitBox
SeeFuturer commented on issue #9190: Echarts 4.x 在线定制,graph图表渲染时会有透明度
URL: 
https://github.com/apache/incubator-echarts/issues/9190#issuecomment-486675882
 
 
   
![image](https://user-images.githubusercontent.com/25840609/56739814-3438a080-67a2-11e9-978e-f8f08d18565f.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.
 
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] [incubator-echarts] fog3211 opened a new issue #10364: 建议增加resize选项

2019-04-25 Thread GitBox
fog3211 opened a new issue #10364: 建议增加resize选项
URL: https://github.com/apache/incubator-echarts/issues/10364
 
 
   ### What problem does this feature solve?
   建议option中增加一个参数,可以设置图表的大小是否随父元素的大小变化而变化。  
   目前的版本中即使设置了图表的宽度为父元素的100%,在父元素的大小改变时,图表的大小仍不会发生变化。  
   如:  
   [https://codesandbox.io/s/8x1lk9ll9l](https://codesandbox.io/s/8x1lk9ll9l)   
 
   1.当屏幕的分辨率小于1300px时,打开菜单栏会导致图表超出边界(无论怎么改变屏幕大小canvas的宽度始终不会改变)  
   2.当用户从较小窗口切换到全屏时,会出现空白区域。  
   
   ### What does the proposed API look like?
   
建议option中增加一个responsive参数,参数为true时,会监视canvas的父元素的大小,如果发生变化,则重新设置canvas的大小,参数为false时,canvas大小不变.
   
   
   


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.
 
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] [incubator-echarts] echarts-robot[bot] commented on issue #10364: 建议增加resize选项

2019-04-25 Thread GitBox
echarts-robot[bot] commented on issue #10364: 建议增加resize选项
URL: 
https://github.com/apache/incubator-echarts/issues/10364#issuecomment-486633520
 
 
   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 to 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] [incubator-echarts] Fhawk189 opened a new issue #10363: echarts.js与echarts.mmin.js更换后异常的问题

2019-04-25 Thread GitBox
Fhawk189 opened a new issue #10363: echarts.js与echarts.mmin.js更换后异常的问题
URL: https://github.com/apache/incubator-echarts/issues/10363
 
 
   下边是我的option,我想实现这种效果:http://www.17sucai.com/pins/demo-show?id=19607
   然后demo用的是echarts.js,我项目中使用的echarts.min.js,结果样子长这个样子:
   
![图片](https://user-images.githubusercontent.com/33713286/56731565-596ee400-678d-11e9-8191-d2431f3087af.png)
   请问我该怎么解决
   
   option = {
title: {
text: ''
},
tooltip: {
trigger: 'item',
formatter:'{b}'
},
legend: {
show: true,
},
series: [{
type: 'map',
map: '郑州',
roam: true,
hoverable: false,
zoom: 1.24, //设置缩放比例
scaleLimit: {
min: 1,
max: 3
}, //滚轮放大缩小的极限
//center:[114.026063,34.022956],//地图中心点
itemStyle: {
//normal 是图形在默认状态下的样式;
normal: {
show: false,
   areaColor: "rgba(1,70,49,0.4)",
borderColor: "#abae81",
borderWidth: 1.4,
   shadowColor: '#56b67b',
   shadowBlur: 100,
},
//emphasis 
是图形在高亮状态下的样式,比如在鼠标悬浮或者图例联动高亮时。
//地图鼠标悬浮事件
emphasis: {
show: false,
areaColor: "#01764c"
}
},
showLegendSymbol: false,
label: {
normal: {
show: true,
textStyle: {
color: '#fff',
fontSize: 10,
fontWeight: 
'bold'
}
},
emphasis: {
show: false,
textStyle: {
color: "#000"
}
}
},
   data:[
   // {name: '登封', id: 410185, value: 410185},
   // {name: '二七', id: 410103, value: 410103},
   // {name: '巩义', id: 410181, value: 410181},
   // {name: '管城', id: 410104, value: 410104},
   // {name: '惠济', id: 410108, value: 410108},
   // {name: '金水', id: 410105, value: 410105},
   // {name: '上街', id: 410106, value: 410106},
   // {name: '新密', id: 410183, value: 410183},
   // {name: '新郑', id: 410184, value: 410184},
   // {name: '中牟', id: 410122, value: 410122},
   // {name: '中原', id: 410102, value: 410102},
   // {name: '荥阳', id: 410182, value: 410182},
   ],
markPoint:{
symbol:'emptyCircle',
animation:true,
   symbolSize : function (v){
   return 10 + v/10
   },
   effect : {
   show: true,
   shadowBlur : 0
   

[GitHub] [incubator-echarts] echarts-robot[bot] closed issue #10363: echarts.js与echarts.mmin.js更换后异常的问题

2019-04-25 Thread GitBox
echarts-robot[bot] closed issue #10363: echarts.js与echarts.mmin.js更换后异常的问题
URL: https://github.com/apache/incubator-echarts/issues/10363
 
 
   


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.
 
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] [incubator-echarts] echarts-robot[bot] commented on issue #10363: echarts.js与echarts.mmin.js更换后异常的问题

2019-04-25 Thread GitBox
echarts-robot[bot] commented on issue #10363: echarts.js与echarts.mmin.js更换后异常的问题
URL: 
https://github.com/apache/incubator-echarts/issues/10363#issuecomment-486628428
 
 
   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 to 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] [incubator-echarts] wangxianping321 opened a new issue #10362: echarts中国地图省市文字偏移不居中,更改china.js不生效

2019-04-25 Thread GitBox
wangxianping321 opened a new issue #10362: echarts中国地图省市文字偏移不居中,更改china.js不生效
URL: https://github.com/apache/incubator-echarts/issues/10362
 
 
   
![image](https://user-images.githubusercontent.com/32926615/56727749-e01ec380-6783-11e9-86ff-ea2b54105596.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.
 
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] [incubator-echarts] echarts-robot[bot] closed issue #10362: echarts中国地图省市文字偏移不居中,更改china.js不生效

2019-04-25 Thread GitBox
echarts-robot[bot] closed issue #10362: echarts中国地图省市文字偏移不居中,更改china.js不生效
URL: https://github.com/apache/incubator-echarts/issues/10362
 
 
   


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.
 
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] [incubator-echarts] moumyu commented on issue #3853: echarts event 事件问题

2019-04-25 Thread GitBox
moumyu commented on issue #3853: echarts event 事件问题
URL: 
https://github.com/apache/incubator-echarts/issues/3853#issuecomment-486584152
 
 
   @hustcc 其实都有问题,zr监听的是全局点击事件。如果记录了lastTipIndex后,点击了非数据图的位置也会响应


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.
 
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] [incubator-echarts] yujinranran commented on issue #9363: Dataset的dimensions存在'0',无法正常工作,图表报错

2019-04-25 Thread GitBox
yujinranran commented on issue #9363: Dataset的dimensions存在'0',无法正常工作,图表报错
URL: 
https://github.com/apache/incubator-echarts/issues/9363#issuecomment-486564199
 
 
   三万颗星,如此严重的故障,到现在还没修复,
   
   > 
   http://echarts.baidu.com/option.html#dataset.dimensions 参考 dimensions 
文档里,可以设置字段类型,“0” 这样的可能会被自动识别成数字
   
   这个说实话也看不懂,这么坑,文档还不好理解


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.
 
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] [incubator-echarts] yujinranran commented on issue #9363: Dataset的dimensions存在'0',无法正常工作,图表报错

2019-04-25 Thread GitBox
yujinranran commented on issue #9363: Dataset的dimensions存在'0',无法正常工作,图表报错
URL: 
https://github.com/apache/incubator-echarts/issues/9363#issuecomment-486558353
 
 
   @pissang 大哥,修复了没,我也遇到了 啊!
   


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.
 
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] [incubator-echarts] yujinranran commented on issue #9363: Dataset的dimensions存在'0',无法正常工作,图表报错

2019-04-25 Thread GitBox
yujinranran commented on issue #9363: Dataset的dimensions存在'0',无法正常工作,图表报错
URL: 
https://github.com/apache/incubator-echarts/issues/9363#issuecomment-486558452
 
 
   很耽误事,维度为啥不是自动为 string


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.
 
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] [incubator-echarts] el opened a new issue #10361: SPDX style licenses

2019-04-25 Thread GitBox
el opened a new issue #10361: SPDX style licenses
URL: https://github.com/apache/incubator-echarts/issues/10361
 
 
   ### Version
   4.2.1
   
   ### Steps to reproduce
   Look at the license information, see it is `Apache` instead of `Apache-2.0` 
or `Apache-1.0`
   
   ### What is expected?
   License to be from this list:
   https://spdx.org/licenses/
   
   ### What is actually happening?
   It is not
   
   
   


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.
 
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] [incubator-echarts] echarts-robot[bot] commented on issue #10361: SPDX style licenses

2019-04-25 Thread GitBox
echarts-robot[bot] commented on issue #10361: SPDX style licenses
URL: 
https://github.com/apache/incubator-echarts/issues/10361#issuecomment-486555733
 
 
   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 to 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