2022-01-15 21:05:11 +08:00
|
|
|
import LineGradients from './index.vue'
|
2022-02-26 17:38:24 +08:00
|
|
|
import Configuration from './config.vue'
|
2022-01-15 21:05:11 +08:00
|
|
|
import image from '@/assets/images/chart/charts/line_gradient2.png'
|
2022-01-25 11:09:32 +08:00
|
|
|
import { ConfigType, PackagesCategoryEnum } 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 LineGradientsConfig: ConfigType = {
|
2022-02-24 21:02:08 +08:00
|
|
|
key: 'VLineGradients',
|
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-25 11:09:32 +08:00
|
|
|
package: PackagesCategoryEnum.CHARTS,
|
2022-01-15 21:05:11 +08:00
|
|
|
node: LineGradients,
|
2022-02-26 17:38:24 +08:00
|
|
|
conNode: () => Configuration,
|
2022-01-15 21:05:11 +08:00
|
|
|
image: image
|
|
|
|
}
|