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 10:28:15 UTC

[GitHub] HalfWater opened a new issue #8702: 如何得到预期图片的效果

HalfWater opened a new issue #8702: 如何得到预期图片的效果
URL: https://github.com/apache/incubator-echarts/issues/8702
 
 
   ![image](https://user-images.githubusercontent.com/6896478/42754047-9a5139b0-8925-11e8-92e2-ab00e1604907.png)
   
   有一张目标图片如上图所示,我已经写了部分代码如下,但是纵轴刻度无法显示,无法按颜色区分。
   谢谢。
   
   代码如下
   
   option = {
       title: {
   			text: '各项能力得分概览',
   			top: '5%',
   			left: '35%',
   			textStyle: {
   				color: '#000000',
   				fontSize: 20,
   			}
   		},
   
   
   radar : 
           {
               indicator : [
                   {text : '客户导向',max : 4.0},
                   {text : '打造高能效团队',max : 4.0},
                   {text : '体系优化',max : 4.0},
                   {text : '资源整合',max : 4.0},
                   {text : '创新变革',max : 4.0},
                   {text : '战略思维',max : 4.0},
                   {text : '追求卓越',max : 4.0},
                   {text : '细致高效',max : 4.0},
                   {text : '问题解决',max : 4.0},
                   {text : '系统改进',max : 4.0},
                   {text : '技术前瞻',max : 4.0},
                   {text : '成就他人',max : 4.0},
                   {text : '以终为始',max : 4.0},
                   {text : '沟通协作',max : 4.0},
                   {text : '诚信正直',max : 4.0},
                   {text : '主动担责',max : 4.0}
               ],
               name: {
                   show: true,
                   textStyle:{
                       color:"#000000"
                   }
                 },
               radius : 130,
               splitNumber : 4,
               axisTick:{
                   show : true,
                   inside : true,
                   lineStyle : {
                       type : 'dashed'
                   }
               },
               splitLine :{
                   show : true
               }
           }
       ,
       series : [
           {
               type: 'radar',
               data : [
                   {
                       value : [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],
   					label: {
   						normal: {
   							show: 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:
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