mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
import TreeMap from './index.vue'
|
|
import image from '@/assets/images/chart/charts/tree_map.png'
|
|
import { ConfigType } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const TreeMapConfig: ConfigType = {
|
|
key: 'VTreeMap',
|
|
title: '树形分布',
|
|
category: ChatCategoryEnum.MORE,
|
|
categoryName: ChatCategoryEnumName.MORE,
|
|
node: TreeMap,
|
|
image: image
|
|
}
|