2022-01-15 21:05:11 +08:00
|
|
|
import LineCommon from './index.vue'
|
|
|
|
import image from '@/assets/images/chart/charts/line.png'
|
|
|
|
import { ConfigType } from '@/packages/index.d'
|
2022-01-18 21:41:52 +08:00
|
|
|
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,
|
2022-01-18 21:41:52 +08:00
|
|
|
categoryName: ChatCategoryEnumName.LINE,
|
2022-01-15 21:05:11 +08:00
|
|
|
node: LineCommon,
|
|
|
|
image: image
|
|
|
|
}
|