mirror of
https://gitee.com/dromara/go-view.git
synced 2025-10-13 14:02:10 +08:00
15 lines
487 B
TypeScript
15 lines
487 B
TypeScript
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const VChartPieConfig: ConfigType = {
|
|
key: 'VChartPie',
|
|
chartKey: 'VVChartPie',
|
|
conKey: 'VCVChartPie',
|
|
title: '饼图多欢-VChart',
|
|
category: ChatCategoryEnum.PIE,
|
|
categoryName: ChatCategoryEnumName.PIE,
|
|
package: PackagesCategoryEnum.VCHART,
|
|
chartFrame: ChartFrameEnum.VCHART,
|
|
image: 'vchart_pie.png'
|
|
}
|