2025-08-21 14:01:20 +08:00
|
|
|
import { PublicConfigClass } from '@/packages/public'
|
|
|
|
import { CreateComponentType } from '@/packages/index.d'
|
|
|
|
import { SmallBorderConfig } from './index'
|
|
|
|
import cloneDeep from 'lodash/cloneDeep'
|
|
|
|
|
|
|
|
export const option = {
|
|
|
|
colors: ['#1089ff', '#0000ff'],
|
|
|
|
backgroundColor: '#00000000'
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
|
|
public key = SmallBorderConfig.key
|
|
|
|
public chartConfig = cloneDeep(SmallBorderConfig)
|
|
|
|
public option = cloneDeep(option)
|
2025-08-21 21:33:14 +08:00
|
|
|
|
2025-08-21 14:01:20 +08:00
|
|
|
|
|
|
|
}
|