echarts的词云图表类型有哪些_echarts之词云图

获取后端数据

getChartCloud() {

this.$http({

method: "post",

url: "/api/getCloud"

})

.then(response => {

this.arrCloud = response.data;

this.drawMyCloud();

})

.catch(function(error) {

console.log(error);

});

},

画词云图

drawMyCloud() {

let option = {

toolbox: {

feature: {

saveAsImage: {}

}

},

series: [

{

type: "wordCloud",

//调整词之间的距离

gridSize: 20,

//用来调整字的大小范围

sizeRange: [12, 50],

//用来调整词的旋转方向,,[0,0]代表着没有角度,也就是词为水平方向需要设置角度参考注释内容

// rotationRange: [-45, 0, 45, 90],

// rotationRange: [ 0,90],

rotationRange: [-60, 60],

shape: "pentagon",

//词云图中的数据

data: this.arrCloud,

//随机生成字体颜色

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"

}

}

}

]

};

this.cloud.setOption(option);

},

效果图

98c55cb2315b4b957abdfd9a5f8a7efc.png

点赞

收藏

分享

文章举报

a6e24ecd1e3231f36462585f29084562.gif

3bc44d77a31db6bd90f99fb0d76bd55d.png

starlsy

发布了13 篇原创文章 · 获赞 0 · 访问量 476

私信

关注

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值