You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@echarts.apache.org by GitBox <gi...@apache.org> on 2018/07/16 02:41:24 UTC

[GitHub] lettywiterock opened a new issue #8697: 关于使用了4.0之后Array(color)无法自适应颜色,统一变成color[0]的颜色值问题.

lettywiterock opened a new issue #8697: 关于使用了4.0之后Array(color)无法自适应颜色,统一变成color[0]的颜色值问题.
URL: https://github.com/apache/incubator-echarts/issues/8697
 
 
   <!--
   为了方便我们能够复现和修复 bug,请遵从下面的规范描述您的问题。
   -->
   
   
   ### One-line summary [问题简述]
   react引用echar4.0  color数组,bar显示颜色只有index==0的颜色,其余颜色被覆盖?
   
   
   ### Version & Environment [版本及环境]
   import ReactEchartsCore from 'echarts-for-react/lib/core';
   import echarts from 'echarts/lib/echarts';
   import 'echarts/lib/chart/line';
   import 'echarts/lib/chart/bar';
   import 'echarts/lib/chart/pie';
   import 'echarts/lib/component/title';
   import 'echarts/lib/component/grid';
   import 'echarts/lib/component/tooltip';
   
   + ECharts version [ECharts 版本]:
   echar4.0
   + Browser version [浏览器类型和版本]:
   chrome 版本 67.0.3396.99(正式版本) (64 位)
   
   ### Expected behaviour [期望结果]
   默认显示多种颜色
   
   ### ECharts option [ECharts配置项]
   <!-- Copy and paste your 'echarts option' here. -->
   <!-- [下方贴你的option,注意不要删掉下方 ```javascript 和 尾部的 ``` 字样。最好是我们能够直接运行的 option。如何得到能运行的 option 参见上方的 guidelines for contributing] -->
   ```javascript
   option={
                            color:['#ffe500','#51ff00','#ff0000','#003cff','#00ffaa'],
   	                  title:{
   	                    text:'统计',
   	                    left:'center',
   	                    top:20
   	                  },
   	                  grid:{
   	                    top:60,
   	                    bottom:30,
   	                    left:40,
   	                    right:10,
   	                    containLabel:false
   	                  },
   	                  xAxis: {
   	                      type: 'value',
   	                  },
   	                  yAxis: {
   	                      type: 'category',
   	                      data: ['A部门', 'B部门', 'C部门', 'D部门', 'E部门', 'F部门','J部门']
   	                  },
   	                  series: {
   	                      data:[100,200,300,400,500,600,700],
   	                      type: 'bar',
   	                      barMaxWidth:10,
   	                     /* itemStyle:{
   	                      	color:function(e){
   	                      		return colorList[parseInt(e.dataIndex%5)]
   	                      	}
   	                      } 这是目前的解决方案*/
   	                  },
   	             }
   
   ```
   
   
   
   
   ### Other comments [其他信息]
   <!-- For example: Screenshot or Online demo -->
   <!-- [例如,截图或线上实例 (JSFiddle/JSBin/Codepen)] -->
   
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

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