Skip to content
On this page

基于 echarts 的值大小气泡聚合


显示代码
html
<HuBubble :data="data" style="background-color: black; height: 30vh" />
<script setup>
  import { ref } from 'vue'
  const data = ref([
    { label: '跑路', value: 1 },
    { label: '跑路1', value: 3 },
    { label: '跑路2', value: 55 },
    { label: '跑路3', value: 22 },
    { label: '跑路4', value: 44 },
    { label: '跑路5', value: 66 },
    { label: '跑路6', value: 11 },
  ])
</script>

Attributes

参数说明类型默认值
data数据集合Array[]

Item Attributes

参数说明类型默认值
labelname 名称String-
value值大小Number-

Released under the MIT License.