123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <template>
- <div id='taskWordCloud' style="height: 457px;width: 100%" ></div>
- </template>
- <script>
- import echarts from "echarts";
- // import resize from "./mixins/resize";
- import "echarts-wordcloud/dist/echarts-wordcloud";
- import "echarts-wordcloud/dist/echarts-wordcloud.min";
- export default {
- name: "TaskCloud",
- // mixins: [resize],
- props: ['info'],
- data() {
- return {
- chart: null
- };
- },
- mounted() {
- this.initChart();
- },
- beforeDestroy() {
- if (!this.chart) {
- return;
- }
- this.chart.dispose();
- this.chart = null;
- },
- methods: {
- initChart() {
- this.chart = echarts.init(document.getElementById('taskWordCloud'),{width:'auto',height:'500px'});
- const option = {
- backgroundColor: "#fff",
- // tooltip: {
- // pointFormat: "{series.name}: <b>{point.percentage:.1f}%</b>"
- // },
- series: [
- {
- type: "wordCloud",
- //用来调整词之间的距离
- gridSize: 10,
- //用来调整字的大小范围
- // Text size range which the value in data will be mapped to.
- // Default to have minimum 12px and maximum 60px size.
- sizeRange: [14, 60],
- // Text rotation range and step in degree. Text will be rotated randomly in range [-90, 90] by rotationStep 45
- //用来调整词的旋转方向,,[0,0]--代表着没有角度,也就是词为水平方向,需要设置角度参考注释内容
- // rotationRange: [-45, 0, 45, 90],
- // rotationRange: [ 0,90],
- rotationRange: [0, 0],
- //随机生成字体颜色
- // maskImage: maskImage,
- textStyle: {
- normal: {
- color: function() {
- return (
- "rgb(" +
- Math.round(Math.random() * 255) +
- ", " +
- Math.round(Math.random() * 255) +
- ", " +
- Math.round(Math.random() * 255) +
- ")"
- );
- }
- }
- },
- grid:{
- x:10,
- y:10,
- x2:10,
- y2:10,
- height:"500px",
- width:"100%"
- },
- //位置相关设置
- // Folllowing left/top/width/height/right/bottom are used for positioning the word cloud
- // Default to be put in the center and has 75% x 80% size.
- left: 0,
- top: 0,
- right: 0,
- bottom: 0,
- width: "100%",
- height: "100%",
- //数据
- data: this.info
- }
- ]
- };
- this.chart.setOption(option);
- }
- }
- }
- </script>
- <style lang='scss' scoped>
- .chartsClass {
- padding-left: 1.2rem;
- }
- #userWordCloud {
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
- }
- </style>
|