后彼 发表于 2025-6-6 18:14:57

vxe-table 实现单元格中渲染饼图、柱形图

官网: https://vxetable.cn
轻量级图表,超高性能的在表格中渲染柱状图,即使是渲染上万条数据单元格图表,也是丝滑流畅。
npm install vxe-pc-ui@4.3.2 vxe-table@4.9.3 @vxe-ui/plugin-render-chart@4.0.1// ...
import { VxeUI } from 'vxe-pc-ui'
import VxeUIPluginRenderChart from '@vxe-ui/plugin-render-chart'
import '@vxe-ui/plugin-render-chart/dist/style.css'
// ...

VxeUI.use(VxeUIPluginRenderChart)评分


<template>

    <vxe-grid v-bind="gridOptions"></vxe-grid>

</template>柱状图


<template>

    <vxe-grid v-bind="gridOptions"></vxe-grid>

</template>饼图


<template>

    <vxe-grid v-bind="gridOptions"></vxe-grid>

</template>https://github.com/x-extends/vxe-table

来源:程序园用户自行投稿发布,如果侵权,请联系站长删除
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: vxe-table 实现单元格中渲染饼图、柱形图