config.ts
582 Bytes
import { PublicConfigClass } from '@/packages/public'
import { CreateComponentType } from '@/packages/index.d'
import { ThreeDimensional1Config } from './index'
import cloneDeep from 'lodash/cloneDeep'
import { chartInitConfig } from '@/settings/designSetting'
export const option = {
}
export default class Config extends PublicConfigClass implements CreateComponentType {
public key = ThreeDimensional1Config.key
public attr = { ...chartInitConfig, zIndex: 1, w: 600, h: 500 }
public chartConfig = cloneDeep(ThreeDimensional1Config)
public option = cloneDeep(option)
}