mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
16 lines
535 B
TypeScript
16 lines
535 B
TypeScript
import image from '@/assets/images/chart/charts/capsule.png'
|
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const CapsuleChartConfig: ConfigType = {
|
|
key: 'CapsuleChart',
|
|
chartKey: 'VCapsuleChart',
|
|
conKey: 'VCCapsuleChart',
|
|
title: '胶囊柱图',
|
|
category: ChatCategoryEnum.BAR,
|
|
categoryName: ChatCategoryEnumName.BAR,
|
|
package: PackagesCategoryEnum.CHARTS,
|
|
chartFrame: ChartFrameEnum.COMMON,
|
|
image
|
|
}
|