果然菜菜
2018-12-12 15:36:59浏览 2341
this.accountCloudOptions = {
series: [{
type: 'wordCloud',
size: ['80%', '80%'],
textRotation: [0, 45, 90, -45],
textPadding: 0,
autoSize: {
enable: true,
minSize: 14
},
data: accountCloudList
}]
};
accountCloudList = [{
'name': 'a1',
'value': 123,
'textStyle': this.createRandomItemStyle()
}];
createRandomItemStyle() {
return {
normal: {
color: 'rgb(' + [
Math.round(Math.random() * 160),
Math.round(Math.random() * 160),
Math.round(Math.random() * 160)
].join(',') + ')'
}
};
}