15 lines
554 B
TypeScript
15 lines
554 B
TypeScript
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
||
|
// import { ChatCategoryEnum, ChatCategoryEnumName } from '../../../index.d'
|
||
|
|
||
|
export const FiniteSpatialDistributionConfig: ConfigType = {
|
||
|
key: 'FiniteSpatialDistribution',
|
||
|
chartKey: 'VFiniteSpatialDistribution',
|
||
|
conKey: 'VCFiniteSpatialDistribution',
|
||
|
title: '有限空间分布情况',
|
||
|
category: 'ConfinedSpace',
|
||
|
categoryName: '有限空间组件',
|
||
|
package: PackagesCategoryEnum.CHARTS,
|
||
|
chartFrame: ChartFrameEnum.ECHARTS,
|
||
|
image: 'pie_center.png'
|
||
|
}
|