每日学习

今天学习热词云的使用,做个人作业2

这里需要导入热词云的包,不过上网找包发现有时候一些包是不能使用的。

所以这里上传我所用的一个包:

链接:https://pan.baidu.com/s/1Rxf1prg78wayOv_7_jmj_g
提取码:h4b6
已经上传到百度文库,有需要可以下载

myChart.setOption({
                         title: {
                             text: '最新热词统计'
                         },
                         tooltip: {},
                         series: [{
                             type : 'wordCloud',  //类型为字符云
                                 shape:'smooth',  //平滑
                                 gridSize : 8, //网格尺寸
                                 size : ['50%','50%'],
                                 //sizeRange : [ 50, 100 ],
                                 rotationRange : [-45, 0, 45, 90], //旋转范围
                                 textStyle : {
                                     normal : {
                                         fontFamily:'微软雅黑',
                                         color: function() {
                                             return 'rgb(' + 
                                                 Math.round(Math.random() * 255) +
                                          ', ' + Math.round(Math.random() * 255) +
                                          ', ' + Math.round(Math.random() * 255) + ')'
                                                }
                                         },
                                     emphasis : {
                                         shadowBlur : 5,  //阴影距离
                                         shadowColor : '#333'  //阴影颜色
                                     }
                                 },
                                 left: 'center',
                                 top: 'center',
                                 right: null,
                                 bottom: null,
                                 width:'100%',
                                 height:'100%',
                                 data:mydata
                         }]
                     });

 这是我的一些代码

posted @ 2021-04-19 10:21  哦心有  阅读(31)  评论(0编辑  收藏  举报