91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue中使用詞云圖的實現方法

發布時間:2022-02-05 17:37:16 來源:億速云 閱讀:831 作者:柒染 欄目:開發技術

這篇文章將為大家詳細講解有關vue中使用詞云圖的實現方法,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

在vue中, 查找到有兩種方法來實現詞云圖, 分別是echarts 和 highcharts

Echarts:

注意,wordcloud對應的echarts版本有要求:echarts-wordcloud@2 is for echarts@5 echarts-wordcloud@1 is for echarts@4

需要下載echartsjs 和 wordcloud, 全局注冊引用echarts

	npm install echarts@5
	npm install echarts-wordcloud@2
<div class="cloud-wrap">
    <div ref="cloudEl" class="cloud-box"></div>
</div>
<style>
.cloud-wrap {
    width: 100%;
    height: 100%;
}
 .cloud-box {
     width: 100%;
     height: 100%;
 }
</style>
<script>
import wordcloud from 'echarts-wordcloud';
export default {
	data() {
		return {
			words:[{
				id:1,
				content:'name'
			}],
			bgImg:'base64格式, 底色為白色', 
		}
	},
	mounted() {
      this.drawCloud(this.$refs.cloudEl, this.words);
  	},
  	methods:{
	  	drawCloud(wrapEl, data) {
	        // let maskImage = new Image(); //可以根據圖片形狀生成有形狀的詞云圖
	        // maskImage.src= this.bgImg;
	        let list = this.wordCloudData.map((item) => ({
	            name: item.content,
	            value: item.id
	        }))
	        if(list.length == 0){
	            list = [{name:'無',value:50}]
	        }
	        let myChart = echarts.init(wrapEl);
	        let option = 
	        {
	            tooltip: {
	                show: true,
	            },
	            // backgroundColor:'#fff', // 畫布背景色
	            series: [
	            {
	                name: "熱詞",
	                type: "wordCloud",
	                // maskImage: maskImage, // 圖片形狀
	                keepAspect: false,
	                sizeRange: [10, 40], //畫布范圍,如果設置太大會出現少詞(溢出屏幕)
	                rotationRange: [0, 0], //數據翻轉范圍
	                // shape: "circle",
	                // drawOutOfBound: true, // 超出畫布的詞匯是否隱藏
	                drawOutOfBound: false,
	                color:"#fff",
	                left: "center",
	                top: "center",
	                right: null,
	                bottom: null,
	                // width: "100%",
	                height: "100%",
	                gridSize: 8,
	                textPadding: 10,
	                autoSize: {
	                    enable: true,
	                    minSize: 6,
	                },
	                textStyle: {
	                    normal: {
	                        fontFamily: 'sans-serif',
	                        fontWeight: 'bold',
	                        color:"#333", // 字體顏色
	                        // color: function () { // 字體顏色
	                        //     return 'rgb(' + [
	                        //         Math.round(Math.random() * 160),
	                        //         Math.round(Math.random() * 160),
	                        //         Math.round(Math.random() * 160)
	                        //     ].join(',') + ')';
	                        // },
	                    },
	                    emphasis: {
	                        // focus: 'self',
	                        textStyle:{
	                            shadowBlur: 10,
	                            shadowColor: "#333",
	                        }
	                    },
	                },
	                data: list,
	            },
	            ],
	        };
	        // maskImage.onload = function() {
	            myChart.setOption(option, true)
	        // };
	    },
  	}
}
</script>

vue中使用詞云圖的實現方法

無遮罩層的詞云圖&uarr;

vue中使用詞云圖的實現方法

有遮罩層的詞云圖&uarr;

Highcharts

下載包

npm install highcharts@7.2.1
<div class="cloud-wrap">
    <div id="container" ></div>
</div>
<style>
	// 同上
</style>
<script>
import Highcharts from 'highcharts'
export default {
	data() {
		return {
			words:[{
				id:1,
				content:'name'
			}],
		}
	},
	mounted() {
      this.dealData();
  	},
  	methods:{
	    dealData(){
	        let data = this.words.map((item,index) => ({
	            name: item.content,
	            value: item.id,
	            //weight: Math.floor(Math.random()*3+1)
	            //控制加粗,隨機數取1~3, 若需要按照接口返回的順序, 可不隨機
	            weight: item.id*100 
	        }))
	        this.drawPic(data)
	    },
	    drawPic(data){
	        Highcharts.chart('container', {
	            //highcharts logo
	            credits: { enabled: false },
	            //導出
	            exporting: { enabled: false },
	            //提示關閉
	            tooltip: { enabled: false },
	            //顏色配置
	            colors:[
	                '#ffffff'
	                // ,'#00c0d7','#2594ce','#de4c85',
	                // '#ff7f46','#ffb310','#e25c52'
	            ],
	            //圖形配置
	            chart: {
	                // spacingBottom: 15,
	                // spacingTop: 12,
	                spacingLeft: 5,
	                spacingRight: 5,
	                backgroundColor: "rgba(255, 255, 255,0)",
	            },
	
	            series: [{
	                type: "wordcloud",// 類型
	                data: data,
	                rotation: 90,//字體不旋轉
	                maxFontSize: 40,//最大字體
	                minFontSize: 14,//最小字體
	                style: {
	                    fontFamily: "sans-serif",
	                    fontWeight: '500'
	                }
	            }],
	        });
	    },
  	}
}
</script>

vue中使用詞云圖的實現方法

echarts 和 highcharts 都可以在vue中實現詞云圖. 但是如果使用echarts的話, 需要當前的echarts進行升級或降級才能實現字體多顏色, 而highcharts則不需要. 自定義形狀highcharts暫時還沒探究, 需要的可以自行查找。

關于vue中使用詞云圖的實現方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

揭西县| 呼图壁县| 吴忠市| 灌南县| 榆树市| 永和县| 伊通| 永修县| 托里县| 会同县| 佛教| 铁岭市| 攀枝花市| 昆山市| 菏泽市| 东城区| 平遥县| 临安市| 阿尔山市| 定远县| 常熟市| 上犹县| 鹤壁市| 天门市| 宿松县| 灵石县| 洛隆县| 永嘉县| 陵川县| 蕉岭县| 翁牛特旗| 彰化县| 万州区| 平阳县| 晋宁县| 盐源县| 寻乌县| 玛曲县| 克东县| 潢川县| 湄潭县|