A Vue 3 pie chart component
npm install @jing-shi/pie-chart-componentA Vue 3 pie chart component based on ECharts.
``bash`
npm install @jing-shi/pie-chart-component
`js
import { createApp } from 'vue'
// main.ts
import PieChartComponent from '@jing-shi/pie-chart-component'
import '@jing-shi/pie-chart-component/style.css'
const app = createApp(App)
app.use(PieChartComponent)
`
`vue
``
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| data | Array | [] | Chart data array |
| title | String | '' | Chart title |
| colorList | Array | default colors | Custom color list for chart |
MIT