15 lines
468 B
TypeScript
Raw Normal View History

import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
2022-01-14 22:07:02 +08:00
2022-01-15 21:05:11 +08:00
export const PieCommonConfig: ConfigType = {
key: 'PieCommon',
chartKey: 'VPieCommon',
2022-03-07 12:33:05 +08:00
conKey: 'VCPieCommon',
2022-02-02 18:17:45 +08:00
title: '饼图',
2022-01-14 22:07:02 +08:00
category: ChatCategoryEnum.PIE,
categoryName: ChatCategoryEnumName.PIE,
2022-01-25 11:09:32 +08:00
package: PackagesCategoryEnum.CHARTS,
chartFrame: ChartFrameEnum.ECHARTS,
image: 'pie.png'
2022-01-14 22:07:02 +08:00
}