图形新增一个词云图形

This commit is contained in:
zhy6599@163.com
2019-12-01 16:03:51 +08:00
parent 15138b535f
commit bfdb12869e
3 changed files with 204 additions and 4 deletions

View File

@@ -62,6 +62,11 @@
</div>
</el-col>
</el-row>
<el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
<div class="chart-wrapper">
<word-cloud />
</div>
</el-row>
<el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
<div class="chart-wrapper">
<category />
@@ -84,6 +89,7 @@ import Scatter from '@/components/Echarts/Scatter'
import Line3D from '@/components/Echarts/Line3D'
import Category from '@/components/Echarts/Category'
import Point from '@/components/Echarts/Point'
import WordCloud from '@/components/Echarts/WordCloud'
export default {
name: 'Echarts',
@@ -99,7 +105,8 @@ export default {
ThemeRiver,
Sankey,
Line3D,
Scatter
Scatter,
WordCloud
}
}
</script>