15 lines
477 B
TypeScript
Raw Normal View History

2022-01-15 21:05:11 +08:00
import BarCommon from './index.vue'
2022-01-15 12:50:00 +08:00
import image from '@/assets/images/chart/charts/bar_x.png'
2022-01-25 11:09:32 +08:00
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
2022-01-14 16:17:14 +08:00
2022-01-15 21:05:11 +08:00
export const BarCommonConfig: ConfigType = {
2022-01-16 22:17:34 +08:00
key: 'VBarCommon',
2022-01-15 21:05:11 +08:00
title: '柱状图',
2022-01-14 22:07:02 +08:00
category: ChatCategoryEnum.BAR,
categoryName: ChatCategoryEnumName.BAR,
2022-01-25 11:09:32 +08:00
package: PackagesCategoryEnum.CHARTS,
2022-01-15 21:05:11 +08:00
node: BarCommon,
2022-01-14 22:07:02 +08:00
image: image
2022-01-14 16:17:14 +08:00
}