[GitHub] forzkgd opened a new issue #8122: 使用 heatmap 模拟伪彩图的时候,网格之间避免有白色间隙

2018-04-08 Thread GitBox
forzkgd opened a new issue #8122: 使用 heatmap 模拟伪彩图的时候,网格之间避免有白色间隙
URL: https://github.com/apache/incubator-echarts/issues/8122
 
 
   
   
   
   ### One-line summary [问题简述]
   
   使用 heatmap 模拟伪彩图的时候,网格之间有白色间隙
   
   
   
   ### Version & Environment [版本及环境]
   + ECharts version [ECharts 版本]:4.0.2
   + Browser version [浏览器类型和版本]:chrome   65.0.3325.181
   + OS Version [操作系统类型和版本]: win 10
   
   
   
   
   
   ### Expected behaviour [期望结果]
   网格之间能不能连续起来?不要有那么明显的白色间隙~
   
   
   
   
   ### ECharts option [ECharts配置项]
   
   
   ```javascript
   option = {
   tooltip: {
   extraCssText: 
"font-size:12px;background:rgba(0,0,0,0.8);border-radius:12;box-shadow:2px 3px 
9px 0px rgba(184, 182, 182, 0.8);border-radius:4px;padding:8px;line-height:1.5",
   formatter: function (params) {
   
   // console.log(params)
   
   return ("" +
   String(params.value[0]).replace(/-/g, "/") +
   "" +
   params.marker +
   (params.data[1]) +
   "nm" +
   (Number(params.data[2]).toFixed(2)) +
   "(个/cm³)"
   );
   }
   },
   grid: {
   // height:"70%"
   bottom: "80",
   },
   toolbox: {
   feature: {
   saveAsImage: { show: true }
   }
   },
   xAxis: {
   // axisPointer:{
   // show:true,
   // type:"line"
   // },
   type: 'category',
   splitLine: {
   show: false
   },
   axisLabel: {
   color: axisColors.labelColor,
   formatter: function (value, index) {
   return value.split(" ")[1] + "\n" + 
value.split(" ")[0].replace(/-/g, "/")
   }
   },
   axisLine: {
   lineStyle: {
   color: axisColors.light.axis
   }
   },
   },
   yAxis: {
   
   name: "粒径Dp(nm)",
   // nameLocation: "middle",
   type: 'category',
   
   // logBase: 10,//默认就是 10
   nameTextStyle: {
   color: axisColors.labelColor,
   },
   axisLabel: {
   color: axisColors.labelColor,

   },
   
   axisLine: {
   lineStyle: {
   color: axisColors.light.axis
   }
   },
   
   },
   visualMap: {
   type: 'continuous',
   textGap: 20,
   // textStyle:{
   // color:"red"
   // },
   text: ['dN/dLogDp\n(个/cm³)', ''],
   realtime: false,
   itemHeight: 200,
   // itemWidth: 20,
   align: 'left',
   top: 'middle',
   // left: 'right',
   right: '3%',
   calculable: true,
   min: 0,
   max: maxV,
   calculable: true,
   realtime: true,
   inRange: {
   color: colorx,//['#313695', '#4575b4', '#74add1', 
'#abd9e9', '#e0f3f8', '#bf', '#fee090', '#fdae61', '#f46d43', '#d73027', 
'#a50026']
   }
   },
   dataZoom: [
   {
   bottom: "10",
   // xAxisIndex: [0, 1],
   // show: true,
   type: 'slider',
   // y: '90%',
   filterMode: "filter",
   start: 0,
   end: 23,
   minSpan: 10,
   }
   ],
   series: [{
   name: '伪彩图',
   type: 'heatmap',
   data: psdColorData,
   // itemStyle: {
   // emphasis: {
   // borderColor: '#333',
   // 

[GitHub] yiakwy opened a new pull request #8121: Update task.js

2018-04-08 Thread GitBox
yiakwy opened a new pull request #8121: Update task.js
URL: https://github.com/apache/incubator-echarts/pull/8121
 
 
   typo


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] pissang commented on issue #8110: 折线图中显示值精确到小数点后四位,找不到格式化的配置方法。

2018-04-08 Thread GitBox
pissang commented on issue #8110: 折线图中显示值精确到小数点后四位,找不到格式化的配置方法。
URL: 
https://github.com/apache/incubator-echarts/issues/8110#issuecomment-379622873
 
 
   可以使用 `label.formatter`


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] Yhspehy opened a new issue #8120: 使用echarts-wordcloud导出base64图片信息不完整

2018-04-08 Thread GitBox
Yhspehy opened a new issue #8120: 使用echarts-wordcloud导出base64图片信息不完整
URL: https://github.com/apache/incubator-echarts/issues/8120
 
 
   
   
   
   ### 使用echarts-wordcloud导出base64图片信息的时候,发现base64位的编码信息不完整,放在img上后无法渲染出图片。
   
   
   
   
   
   ### Version & Environment [版本及环境]
   + ECharts version [ECharts 版本]:^3.8.5
   + Echarts-wordcloud [Echarts-wordcloud版本]:^1.1.3
   + Browser version [浏览器类型和版本]:Chrome 65
   + OS Version [操作系统类型和版本]: Win8
   
   
   
   
   
   ### Expected behaviour [期望结果]
   
   能够得到渲染出图片的base64字符串
   
   
   
   ### ECharts option [ECharts配置项]
   
   
   ```javascript
   let wordCloud = echarts.init(
   document.getElementById(id)
 )
 wordCloud.setOption({
   series: [{
 type: 'wordCloud',
 shape: 'circle',
 sizeRange: [12, 30],
 rotationRange: [-60, 60],
 textRotation: [0, 45, 90, -45],
 rotationStep: 45,
 width: 390,
 height: 370,
 drawOutOfBound: false,
 textStyle: {
   normal: {
 color: function () {
   return 'rgb(' + [
 Math.round(Math.random() * 160),
 Math.round(Math.random() * 160),
 Math.round(Math.random() * 160)
   ].join(',') + ')'
 }
   },
   emphasis: {
 shadowBlur: 10,
 shadowColor: '#333'
   }
 },
 data: data.slice(0, 100)
   }]
 })
 return wordCloud.getDataURL({
   pixelRatio: 2,
   backgroundColor: '#fff'
 })
   ```
   


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] pissang closed issue #8114: Echarts graph 画图时发现 links 这个配置项有隐藏的 id 字段

2018-04-08 Thread GitBox
pissang closed issue #8114: Echarts graph 画图时发现 links 这个配置项有隐藏的 id 字段
URL: https://github.com/apache/incubator-echarts/issues/8114
 
 
   


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] pissang closed issue #8119: dataZoom 样式可有配置项

2018-04-08 Thread GitBox
pissang closed issue #8119: dataZoom 样式可有配置项
URL: https://github.com/apache/incubator-echarts/issues/8119
 
 
   


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] mike8625 commented on issue #8020: 雷达图刻度显示不出来,js出错:TypeError: e.getCategories is not a function

2018-04-08 Thread GitBox
mike8625 commented on issue #8020: 雷达图刻度显示不出来,js出错:TypeError: e.getCategories 
is not a function
URL: 
https://github.com/apache/incubator-echarts/issues/8020#issuecomment-379619099
 
 
   很奇怪了,我前两天试的报错,还给他们提了bug,今天再试,就没事了,我更新了谷歌到65


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] publig commented on issue #7784: Merge pull request #1 from ecomfe/master

2018-04-08 Thread GitBox
publig commented on issue #7784: Merge pull request #1 from ecomfe/master
URL: 
https://github.com/apache/incubator-echarts/pull/7784#issuecomment-365138498
 
 
   update


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: Podling Report Reminder - April 2018

2018-04-08 Thread Wenli Zhang
Thanks John.

It says I should send my username to "general@incubator". Is this an email
or how should I send it? If it is email, I guess there's something missing
in the suffix part of "incubator"?

Zhang Wenli
http://zhangwenli.com

On Sun, Apr 8, 2018 at 9:41 PM, John D. Ament  wrote:

> Wenli,
>
> There's information at https://wiki.apache.org/incubator/ on steps
> required
> to gain write access.  Take a look at the info box at the top.
>
> John
>
> On Sat, Apr 7, 2018 at 11:53 PM Wenli Zhang  wrote:
>
> > Hi John,
> >
> > I will be responsible for podling report of ECharts.
> > Could I have the authority of accessing pages like
> > https://wiki.apache.org/incubator/April2018 ?
> >
> > I asked Shen Yi to edit it for me this month.
> >
> > ​Thanks!​
> >
> > Zhang Wenli
> > http://zhangwenli.com
> >
> > On Sun, Apr 8, 2018 at 11:31 AM, Wenli Zhang 
> > wrote:
> >
> >> Sorry for the delay. I will draft it now.
> >>
> >> Zhang Wenli
> >> http://zhangwenli.com
> >>
> >> On Thu, Apr 5, 2018 at 9:43 PM, John D. Ament 
> >> wrote:
> >>
> >>> Just following up on the below..  Any takers?
> >>>
> >>> On Wed, Apr 4, 2018 at 7:11 AM John D. Ament 
> >>> wrote:
> >>>
> >>> > Hi all,
> >>> >
> >>> > Just a reminder that our report is due today.  Anyone available to
> >>> draft
> >>> > it?
> >>> >
> >>> > John
> >>> >
> >>> >
> >>> > On Tue, Apr 3, 2018 at 8:56 PM  wrote:
> >>> >
> >>> >> Dear podling,
> >>> >>
> >>> >> This email was sent by an automated system on behalf of the Apache
> >>> >> Incubator PMC. It is an initial reminder to give you plenty of time
> to
> >>> >> prepare your quarterly board report.
> >>> >>
> >>> >> The board meeting is scheduled for Wed, 18 April 2018, 10:30 am PDT.
> >>> >> The report for your podling will form a part of the Incubator PMC
> >>> >> report. The Incubator PMC requires your report to be submitted 2
> weeks
> >>> >> before the board meeting, to allow sufficient time for review and
> >>> >> submission (Wed, April 04).
> >>> >>
> >>> >> Please submit your report with sufficient time to allow the
> Incubator
> >>> >> PMC, and subsequently board members to review and digest. Again, the
> >>> >> very latest you should submit your report is 2 weeks prior to the
> >>> board
> >>> >> meeting.
> >>> >>
> >>> >> Thanks,
> >>> >>
> >>> >> The Apache Incubator PMC
> >>> >>
> >>> >> Submitting your Report
> >>> >>
> >>> >> --
> >>> >>
> >>> >> Your report should contain the following:
> >>> >>
> >>> >> *   Your project name
> >>> >> *   A brief description of your project, which assumes no knowledge
> of
> >>> >> the project or necessarily of its field
> >>> >> *   A list of the three most important issues to address in the move
> >>> >> towards graduation.
> >>> >> *   Any issues that the Incubator PMC or ASF Board might wish/need
> to
> >>> be
> >>> >> aware of
> >>> >> *   How has the community developed since the last report
> >>> >> *   How has the project developed since the last report.
> >>> >> *   How does the podling rate their own maturity.
> >>> >>
> >>> >> This should be appended to the Incubator Wiki page at:
> >>> >>
> >>> >> https://wiki.apache.org/incubator/April2018
> >>> >>
> >>> >> Note: This is manually populated. You may need to wait a little
> before
> >>> >> this page is created from a template.
> >>> >>
> >>> >> Mentors
> >>> >> ---
> >>> >>
> >>> >> Mentors should review reports for their project(s) and sign them off
> >>> on
> >>> >> the Incubator wiki page. Signing off reports shows that you are
> >>> >> following the project - projects that are not signed may raise
> alarms
> >>> >> for the Incubator PMC.
> >>> >>
> >>> >> Incubator PMC
> >>> >>
> >>> >> 
> -
> >>> >> To unsubscribe, e-mail: dev-unsubscr...@echarts.apache.org
> >>> >> For additional commands, e-mail: dev-h...@echarts.apache.org
> >>> >>
> >>> >>
> >>>
> >>
> >>
> >
>


[GitHub] woodenZhu commented on issue #8080: showAllSymbol为true时,最后一个点并没有显示symbol

2018-04-08 Thread GitBox
woodenZhu commented on issue #8080: showAllSymbol为true时,最后一个点并没有显示symbol
URL: 
https://github.com/apache/incubator-echarts/issues/8080#issuecomment-379612865
 
 
   同问


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] hyZhang0701 commented on issue #8117: sankey图links中存在循环数据导致页面卡死并且无异常信息提示

2018-04-08 Thread GitBox
hyZhang0701 commented on issue #8117: sankey图links中存在循环数据导致页面卡死并且无异常信息提示
URL: 
https://github.com/apache/incubator-echarts/issues/8117#issuecomment-379612124
 
 
   希望能给予支持


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] hyZhang0701 opened a new issue #8117: sankey

2018-04-08 Thread GitBox
hyZhang0701 opened a new issue #8117: sankey
URL: https://github.com/apache/incubator-echarts/issues/8117
 
 
   
   
   
   ### One-line summary [问题简述]
   
   
   
   
   
   ### Version & Environment [版本及环境]
   + ECharts version [ECharts 版本]:
   + Browser version [浏览器类型和版本]:
   + OS Version [操作系统类型和版本]:
   
   
   
   
   
   ### Expected behaviour [期望结果]
   
   
   
   
   
   ### ECharts option [ECharts配置项]
   
   
   ```javascript
   option = {
   
   }
   
   ```
   
   
   
   
   ### Other comments [其他信息]
   
   
   
   


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] tangqinGiser opened a new issue #8116: 大数据图层无法显示tooltip提示框,LargeLineShape.findDataIndex()因参数缺失无法返回dataIndex.

2018-04-08 Thread GitBox
tangqinGiser opened a new issue #8116: 
大数据图层无法显示tooltip提示框,LargeLineShape.findDataIndex()因参数缺失无法返回dataIndex.
URL: https://github.com/apache/incubator-echarts/issues/8116
 
 
   
   
   
   ### One-line summary [问题简述]
   当前用最新版的echarts创建一个大数据图层,尝试添加 tooltip 
一直没显示,跟代码到LargeLineShape.findDataIndex(),因参数确实无法返回 
dataIndex,尝试补足参数后成功显示tooltip。请问是否为echarts缺陷?
   
   
   ### ECharts option [ECharts配置项]
   
   
   ```javascript
   option = {
   animation: false,
   progressive: 2,
   GLMap: {
   roam: true
   },
   title: {
   text: '北京道路网络图',
   subtext: '200万数据点绘制',
   left: 'center',
   textStyle: {
   color: '#fff'
   }
   },
   tooltip: {
   trigger: 'item',
   },
   coordinateSystem: 'GLMap',
   series: [{
   name: 'beijingRoads',
   type: 'lines',
   blendMode: 'lighter',
   coordinateSystem: 'GLMap',
   
   dimensions: ['value'],
   zlevel: 1,
   data: new Float64Array(),
   polyline: true,
   large: true,
   
   lineStyle: {
   color: 'orange',
   width: 2,
   opacity: 0.3
   },
   tooltip: {
   trigger: 'item',
   formatter: function (params, ticket, callback) {
   map.getCanvas().style.cursor = 'pointer';
   return '第' + params.dataIndex + '个数据。';
   }
   },
   }]
   
   ```
   
   
   
   
   ### Other comments [其他信息]
   
   
   
![image](https://user-images.githubusercontent.com/30792630/38476069-87ace820-3bde-11e8-8093-199bc30fcf8c.png)
   
   
![image](https://user-images.githubusercontent.com/30792630/38476045-5f1ebb90-3bde-11e8-989a-1fb266bb5b60.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: Podling Report Reminder - April 2018

2018-04-08 Thread Dave Fisher
Thanks John.

I’ve signed off.

Regards,
Dave

Sent from my iPhone

> On Apr 8, 2018, at 6:47 AM, John D. Ament  wrote:
> 
> Mentors,
> 
> There is now a report posted.  I'll sign off, but would be good to get more
> sign offs.
> 
> John
> 
>> On Sun, Apr 8, 2018 at 9:41 AM John D. Ament  wrote:
>> 
>> Wenli,
>> 
>> There's information at https://wiki.apache.org/incubator/ on steps
>> required to gain write access.  Take a look at the info box at the top.
>> 
>> John
>> 
>> 
>>> On Sat, Apr 7, 2018 at 11:53 PM Wenli Zhang  wrote:
>>> 
>>> Hi John,
>>> 
>>> I will be responsible for podling report of ECharts.
>>> Could I have the authority of accessing pages like
>>> https://wiki.apache.org/incubator/April2018 ?
>>> 
>>> I asked Shen Yi to edit it for me this month.
>>> 
>>> ​Thanks!​
>>> 
>>> Zhang Wenli
>>> http://zhangwenli.com
>>> 
>>> On Sun, Apr 8, 2018 at 11:31 AM, Wenli Zhang 
>>> wrote:
>>> 
 Sorry for the delay. I will draft it now.
 
 Zhang Wenli
 http://zhangwenli.com
 
 On Thu, Apr 5, 2018 at 9:43 PM, John D. Ament 
 wrote:
 
> Just following up on the below..  Any takers?
> 
> On Wed, Apr 4, 2018 at 7:11 AM John D. Ament 
> wrote:
> 
>> Hi all,
>> 
>> Just a reminder that our report is due today.  Anyone available to
> draft
>> it?
>> 
>> John
>> 
>> 
>>> On Tue, Apr 3, 2018 at 8:56 PM  wrote:
>>> 
>>> Dear podling,
>>> 
>>> This email was sent by an automated system on behalf of the Apache
>>> Incubator PMC. It is an initial reminder to give you plenty of time
> to
>>> prepare your quarterly board report.
>>> 
>>> The board meeting is scheduled for Wed, 18 April 2018, 10:30 am PDT.
>>> The report for your podling will form a part of the Incubator PMC
>>> report. The Incubator PMC requires your report to be submitted 2
> weeks
>>> before the board meeting, to allow sufficient time for review and
>>> submission (Wed, April 04).
>>> 
>>> Please submit your report with sufficient time to allow the Incubator
>>> PMC, and subsequently board members to review and digest. Again, the
>>> very latest you should submit your report is 2 weeks prior to the
> board
>>> meeting.
>>> 
>>> Thanks,
>>> 
>>> The Apache Incubator PMC
>>> 
>>> Submitting your Report
>>> 
>>> --
>>> 
>>> Your report should contain the following:
>>> 
>>> *   Your project name
>>> *   A brief description of your project, which assumes no knowledge
> of
>>>the project or necessarily of its field
>>> *   A list of the three most important issues to address in the move
>>>towards graduation.
>>> *   Any issues that the Incubator PMC or ASF Board might wish/need
> to be
>>>aware of
>>> *   How has the community developed since the last report
>>> *   How has the project developed since the last report.
>>> *   How does the podling rate their own maturity.
>>> 
>>> This should be appended to the Incubator Wiki page at:
>>> 
>>> https://wiki.apache.org/incubator/April2018
>>> 
>>> Note: This is manually populated. You may need to wait a little
> before
>>> this page is created from a template.
>>> 
>>> Mentors
>>> ---
>>> 
>>> Mentors should review reports for their project(s) and sign them off
> on
>>> the Incubator wiki page. Signing off reports shows that you are
>>> following the project - projects that are not signed may raise alarms
>>> for the Incubator PMC.
>>> 
>>> Incubator PMC
>>> 
>>> -
>>> 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



[GitHub] xinzai2014 opened a new issue #8115: echarts 力引导布局关系图,如何实现节点拖拽

2018-04-08 Thread GitBox
xinzai2014 opened a new issue #8115: echarts 力引导布局关系图,如何实现节点拖拽 
URL: https://github.com/apache/incubator-echarts/issues/8115
 
 
   
   
   
   ### One-line summary [问题简述]
   echarts力引导布局关系图,如何实现拖拽节点后,固定在那个位置不回弹
   
   
   
   ### Version & Environment [版本及环境]
   + ECharts version [ECharts 版本]:echarts4.0.4
   + Browser version [浏览器类型和版本]:google 62
   + OS Version [操作系统类型和版本]: win10
   
   
   
   
   
   ### Expected behaviour [期望结果]
   
   
   
   
   
   ### ECharts option [ECharts配置项]
   
   
   ```javascript
   option = {
   
   }
   
   ```
   
   
   
   
   ### Other comments [其他信息]
   
   
   
   


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: Move GitBox notifications to commits list?

2018-04-08 Thread Daniel Gruno

On 04/08/2018 03:53 PM, John D. Ament wrote:

Hi,

I find it a bit difficult to sift through the developer activities.  Right
now, all gitbox notifications are going to dev@.  I think they make more
sense to go to commits@, potentially an issues@ list.

What do others think?

John



or make an issues@ list? Would be nice if we had it split three ways:

dev@: development discussions
issues@: PRs etc
commits: git commits


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



[GitHub] chenjiangshuo opened a new issue #8114: Echarts graph 画图时发现 links 这个配置项有隐藏的 id 字段

2018-04-08 Thread GitBox
chenjiangshuo opened a new issue #8114: Echarts graph 画图时发现 links 这个配置项有隐藏的 id 
字段
URL: https://github.com/apache/incubator-echarts/issues/8114
 
 
   
   
   
   ### Echarts graph 画图时发现 links 这个配置项有隐藏的 id 字段,如 id 
参数有相同的项,窗口变化时会出现诡异的线条平移的现象。
   
   
   
   
   
   ### Version & Environment [版本及环境]
   + ECharts version [4+]:
   + Browser version [chrome 最新]:
   + OS Version [MAC]:
   
   
   
   
   
   
   
   
   ### ECharts option [ECharts配置项]
   
   
   ```javascript
   option = {
   
   title: {
   text: '网络拓扑信息',
   },
   tooltip:{},
   animationDurationUpdate: 1500,
   animationEasingUpdate: 'quinticInOut',
   series : [
   {
   type: 'graph',
   layout: 'none',
   symbolSize: 50,//图形的大小(示例中的圆的大小)
   roam: true,//鼠标缩放及平移
   focusNodeAdjacency:true,//是否在鼠标移到节点上的时候突出显示节点以及节点的边和邻接节点
   label: {
   normal: {
   show: true ,  //控制非高亮时节点名称是否显示
   position:'top',
   fontSize:20
   }
   },
   
   edgeSymbol: ['circle', 'arrow'],
   edgeSymbolSize: [1, 10],//箭头的大小
   edgeLabel: {
   normal:{
   show:false
   },
   emphasis: {
   textStyle: {
   fontSize: 20  //边节点显示的字体大小
   }
   }
   },
   
   //节点信息
   
   data:
   [
   {
   name:'h1',
   ip:'10.108.50.101',
   isnode:true,
   x:100,
   y:300,
   // symbol:'image://服务器-20.png',
   },
   {
   name:'h2',
   ip:'10.108.50.102',
   isnode:true,
   x:200,
   y:470,
   // symbol:'image://服务器-20.png',
   },
   {
   name:'h3',
   ip:'10.108.50.103',
   isnode:true,
   x:400,
   y:470,
   // symbol:'image://服务器-20.png',
   },
   {
   name:'h4',
   ip:'10.108.50.104',
   isnode:true,
   x:500,
   y:300,
   // symbol:'image://服务器-20.png',
   },
   {
   name:'h5',
   ip:'10.108.50.105',
   isnode:true,
   x:400,
   y:130,
   // symbol:'image://服务器-20.png',
   },
   {
   name:'h6',
   ip:'10.108.50.106',
   isnode:true,
   x:200,
   y:130,
   // symbol:'image://服务器-20.png',
   },
   {
   name:'h7',
   ip:'10.108.50.107',
   isnode:true,
   x:300,
   y:300,
   // symbol:'image://服务器-20.png',
   },
   
   ],
   
   links:
   [
   {   
   id:'1',
   source:'h1',
   target:'h2',
   islink:true,
   name:'链路1',
   bandwith:Math.round(Math.random()*50+50)+'M',//50-100间的随机整数
   timeout:Math.round(Math.random()*10)+1+'ms',   //1-10间的整数
   PacketLossRate:'0.0'+Math.round(Math.random()*10)+'%', 
//0.01%--0.09%
   },
   {
   id:'1',
   source:'h2',
   target:'h3',
   islink:true,
   name:'链路2',
   bandwith:Math.round(Math.random()*50+50)+'M',//50-100间的随机整数
   timeout:Math.round(Math.random()*10)+1+'ms',   //1-10间的整数
   PacketLossRate:'0.0'+Math.round(Math.random()*10)+'%', 
//0.01%--0.09%
   },{
   source:'h3',
   target:'h4',
   islink:true,
   name:'链路3',
   bandwith:Math.round(Math.random()*50+50)+'M',//50-100间的随机整数
   timeout:Math.round(Math.random()*10)+1+'ms',   //1-10间的整数
   PacketLossRate:'0.0'+Math.round(Math.random()*10)+'%', 
//0.01%--0.09%
   },{
   source:'h4',
   target:'h5',
   islink:true,
   name:'链路4',
   bandwith:Math.round(Math.random()*50+50)+'M',//50-100间的随机整数
   timeout:Math.round(Math.random()*10)+1+'ms',   //1-10间的整数
   PacketLossRate:'0.0'+Math.round(Math.random()*10)+'%', 
//0.01%--0.09%
   },{
   source:'h5',
   target:'h6',
   islink:true,
   name:'链路5',
   bandwith:Math.round(Math.random()*50+50)+'M',//50-100间的随机整数
   timeout:Math.round(Math.random()*10)+1+'ms',   //1-10间的整数
  

[GitHub] deqingli commented on issue #5439: 新增树形+趋势图支持

2018-04-08 Thread GitBox
deqingli commented on issue #5439: 新增树形+趋势图支持
URL: 
https://github.com/apache/incubator-echarts/issues/5439#issuecomment-379534276
 
 
   你好,可以给一些具体的数据么,因为平时几乎接触不到商业数据,不太清楚数据是什么结构,我们一般基于数据想要表达的信息,设计新的可视化形式。


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] Adelaide1014 commented on issue #4667: 如何在柱状图给最大值和最小值设置不同的颜色

2018-04-08 Thread GitBox
Adelaide1014 commented on issue #4667: 如何在柱状图给最大值和最小值设置不同的颜色
URL: 
https://github.com/apache/incubator-echarts/issues/4667#issuecomment-379530823
 
 
   ECharts version [ECharts 版本]: 3.0版本中:
   itemStyle:{
   normal:{
   color:'orange' 
   },
   emphasis:{
   color:'purple' 
   }
   },
   是用来设置正常显示与鼠标悬停等高亮时的状态,不是用来设置最大值最小值是的颜色;
   解决方案如下
   
   
   function getColor(value){
   console.log(value)
   if(value=='max'){
   return 'red';
   }else{
   return 'green';
   }
   }
   
   series : [
   {
   name:'直接访问',
   type:'bar',
   barWidth: '60%',
   itemStyle:{
   normal:{//正常
   color:'orange' 
   },
   emphasis:{//高亮鼠标悬浮
   color:'purple' 
   }
   },
   data:[{
   value:10,
   itemStyle:{//直接专递是否最大值
color:getColor('min')
 
   }
   }, {
   value:52,
   itemStyle:{
 color:getColor('max')
   }
   }, {
   value:22,
   itemStyle:{
 //color:getColor('max')
   }
   }]
   }
   ]
   


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] Adelaide1014 commented on issue #4667: 如何在柱状图给最大值和最小值设置不同的颜色

2018-04-08 Thread GitBox
Adelaide1014 commented on issue #4667: 如何在柱状图给最大值和最小值设置不同的颜色
URL: 
https://github.com/apache/incubator-echarts/issues/4667#issuecomment-379530823
 
 
   ECharts version [ECharts 版本]: 3.0版本中:
   itemStyle:{
   normal:{
   color:'orange' 
   },
   emphasis:{
   color:'purple' 
   }
   },
   是用来设置正常显示与鼠标悬停等高亮时的状态,不是用来设置最大值最小值是的颜色
   
   
   function getColor(value){
   console.log(value)
   if(value=='max'){
   return 'red';
   }else{
   return 'green';
   }
   }
   
   series : [
   {
   name:'直接访问',
   type:'bar',
   barWidth: '60%',
   itemStyle:{
   normal:{//正常
   color:'orange' 
   },
   emphasis:{//高亮鼠标悬浮
   color:'purple' 
   }
   },
   data:[{
   value:10,
   itemStyle:{//直接专递是否最大值
color:getColor('min')
 
   }
   }, {
   value:52,
   itemStyle:{
 color:getColor('max')
   }
   }, {
   value:22,
   itemStyle:{
 //color:getColor('max')
   }
   }]
   }
   ]
   


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] deqingli closed issue #7720: Tree 重复渲染报错: uncaught at _callee TypeError: Cannot read property 'getModel' of undefined

2018-04-08 Thread GitBox
deqingli closed issue #7720: Tree 重复渲染报错: uncaught at _callee TypeError: Cannot 
read property 'getModel' of undefined
URL: https://github.com/apache/incubator-echarts/issues/7720
 
 
   


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] mymickey opened a new issue #8113: markpoint coord是否支持function我需要在datazoom中动态标注某个数据

2018-04-08 Thread GitBox
mymickey opened a new issue #8113: markpoint 
coord是否支持function我需要在datazoom中动态标注某个数据
URL: https://github.com/apache/incubator-echarts/issues/8113
 
 
   
   
   
   ### One-line summary [问题简述]
   
   
   
   markpoint coord是否支持function我需要在datazoom中动态标注某条数据
   
   ### Version & Environment [版本及环境]
   + ECharts version [ECharts 版本]:
   + Browser version [浏览器类型和版本]:
   + OS Version [操作系统类型和版本]:
   
   
   
   
   
   ### Expected behaviour [期望结果]
   
   
   
   
   
   ### ECharts option [ECharts配置项]
   
   
   ```javascript
   option = {
   
   }
   
   ```
   
   
   
   
   ### Other comments [其他信息]
   
   
   
   


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

2018-04-08 Thread GitBox
deqingli commented on issue #7090: 求tree节点之间折线样式
URL: 
https://github.com/apache/incubator-echarts/issues/7090#issuecomment-379524861
 
 
   后续会考虑加上,谢谢反馈


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] deqingli closed issue #7245: 树形图叶节点label formatter无效

2018-04-08 Thread GitBox
deqingli closed issue #7245: 树形图叶节点label formatter无效
URL: https://github.com/apache/incubator-echarts/issues/7245
 
 
   


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] deqingli commented on issue #7245: 树形图叶节点label formatter无效

2018-04-08 Thread GitBox
deqingli commented on issue #7245: 树形图叶节点label formatter无效
URL: 
https://github.com/apache/incubator-echarts/issues/7245#issuecomment-379524699
 
 
   您好好,我本地试了一下,是可以的。如下图,不仅可以修改所有 symbol 的大小,还可以指定单个symbol 的大小。等到下一个版本发布后,您再验证下。
   
![image](https://user-images.githubusercontent.com/13548221/38464049-87173d70-3b39-11e8-95c3-2c1b56973aee.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] deqingli commented on issue #7245: 树形图叶节点label formatter无效

2018-04-08 Thread GitBox
deqingli commented on issue #7245: 树形图叶节点label formatter无效
URL: 
https://github.com/apache/incubator-echarts/issues/7245#issuecomment-379524699
 
 
   你好,我本地试了一下,是可以的。如下图,等到下一个版本发布后,你再验证下。
   
![image](https://user-images.githubusercontent.com/13548221/38464049-87173d70-3b39-11e8-95c3-2c1b56973aee.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