2022-01-15 21:05:11 +08:00
|
|
|
import PieCommon from './index.vue'
|
2022-01-15 12:50:00 +08:00
|
|
|
import image from '@/assets/images/chart/charts/pie.png'
|
2022-01-14 22:07:02 +08:00
|
|
|
import { ConfigType } from '@/packages/index.d'
|
2022-01-18 21:41:52 +08:00
|
|
|
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 = {
|
2022-01-16 22:17:34 +08:00
|
|
|
key: 'VPieCommon',
|
2022-01-15 21:05:11 +08:00
|
|
|
title: '计量图',
|
2022-01-14 22:07:02 +08:00
|
|
|
category: ChatCategoryEnum.PIE,
|
2022-01-18 21:41:52 +08:00
|
|
|
categoryName: ChatCategoryEnumName.PIE,
|
2022-01-15 21:05:11 +08:00
|
|
|
node: PieCommon,
|
2022-01-15 12:50:00 +08:00
|
|
|
image
|
2022-01-14 22:07:02 +08:00
|
|
|
}
|