index.ts 490 B

1234567891011121314
  1. import Variable from './index.vue'
  2. import image from '@/assets/images/chart/charts/water_variable.png'
  3. import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
  4. import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
  5. export const VariableConfig: ConfigType = {
  6. key: 'VVariable',
  7. title: '折线面积图',
  8. category: ChatCategoryEnum.MORE,
  9. categoryName: ChatCategoryEnumName.MORE,
  10. package: PackagesCategoryEnum.CHARTS,
  11. node: Variable,
  12. image: image
  13. }