echarts-wordcloud词云库

840 阅读1分钟

一款好用css库,可以摆出好看的字词样式。

例子

echarts-wordcloud
v   c			 h
u	s		 t
e		s	 m
    js			 l

安装

npm install echarts@5.2.2 --save
npm install echarts-wordcloud@2.0.0 -S

在使用的组件

import * as echarts from 'echarts'
import 'echarts-wordcloud'

<div ref="chartRef" />

const { proxy } = getCurrentInstance()
let chart = null
const chartRef = ref()
function initChart() {
  chart = echarts.init(proxy.$refs.chartRef, 'macarons')

  chart.setOption(option)
 }