15 lines
477 B
TypeScript
Raw Normal View History

2022-01-15 22:35:32 +08:00
import TreeMap from './index.vue'
import image from '@/assets/images/chart/charts/tree_map.png'
2022-01-25 11:09:32 +08:00
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
2022-01-15 22:35:32 +08:00
export const TreeMapConfig: ConfigType = {
2022-01-16 22:17:34 +08:00
key: 'VTreeMap',
2022-01-15 22:35:32 +08:00
title: '树形分布',
category: ChatCategoryEnum.MORE,
categoryName: ChatCategoryEnumName.MORE,
2022-01-25 11:09:32 +08:00
package: PackagesCategoryEnum.CHARTS,
2022-01-15 22:35:32 +08:00
node: TreeMap,
image: image
}