15 lines
482 B
TypeScript
Raw Normal View History

2022-01-15 21:05:11 +08:00
import LineCommon from './index.vue'
import image from '@/assets/images/chart/charts/line.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 21:05:11 +08:00
export const LineCommonConfig: ConfigType = {
2022-01-16 22:17:34 +08:00
key: 'VLineCommon',
2022-01-15 21:05:11 +08:00
title: '折线图',
category: ChatCategoryEnum.LINE,
categoryName: ChatCategoryEnumName.LINE,
2022-01-25 11:09:32 +08:00
package: PackagesCategoryEnum.CHARTS,
2022-01-15 21:05:11 +08:00
node: LineCommon,
image: image
}