mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-24 18:30:17 +08:00
16 lines
514 B
TypeScript
16 lines
514 B
TypeScript
import image from '@/assets/images/chart/charts/pie.png'
|
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const PieCommonConfig: ConfigType = {
|
|
key: 'PieCommon',
|
|
chartKey: 'VPieCommon',
|
|
conKey: 'VCPieCommon',
|
|
title: '饼图',
|
|
category: ChatCategoryEnum.PIE,
|
|
categoryName: ChatCategoryEnumName.PIE,
|
|
package: PackagesCategoryEnum.CHARTS,
|
|
chartFrame: ChartFrameEnum.ECHARTS,
|
|
image
|
|
}
|