小程序--雷达图显示刻度
作者:互联网
雷达图显示刻度
let indicatorData = app.globalData.chartsData.indicatorData;
//添加axisLabel:{show:true} 或者 axisLabel:{show:false} 可以控制在那条线轴上显示刻度
for (var i=0; i < indicatorData.length;i++) {
if(i==0){
indicatorData[i].axisLabel = {
"show":true
}
}else{
indicatorData[i].axisLabel = {
"show":false
}
}
}
var option = {
backgroundColor: "#ffffff",
// 图表的位置
grid: {
position: 'center',
},
tooltip: {
confine: true, //设置是否将tooltip框限制在图表的区域内
enterable: true, //设置鼠标是否可以移动到tooltip区域内
},
legend: {
bottom: 0,
data: ['沟通技能','社交技能','思考技能','研究技能','自我管理']
},
radar: {
// shape: 'circle',
name: {
textStyle: {
color: '#000'
}
},
//刻度的相关设置
axisLabel: {
show: true,
color:'#ccc',
//showMinLabel: false
},
indicator: app.globalData.chartsData.indicatorData,
},
series: [{
name: '五大技能',
type: 'radar',
data: app.globalData.chartsData.seriesData,
}]
};
标签:show,--,axisLabel,刻度,indicatorData,雷达,true,技能 来源: https://blog.csdn.net/hqlmomo/article/details/118082478