index.ts 477 B

1234567891011121314
  1. import TreeMap from './index.vue'
  2. import image from '@/assets/images/chart/charts/tree_map.png'
  3. import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
  4. import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
  5. export const TreeMapConfig: ConfigType = {
  6. key: 'VTreeMap',
  7. title: '树形分布',
  8. category: ChatCategoryEnum.MORE,
  9. categoryName: ChatCategoryEnumName.MORE,
  10. package: PackagesCategoryEnum.CHARTS,
  11. node: TreeMap,
  12. image: image
  13. }