32 lines
839 B
TypeScript
Raw Normal View History

2022-02-04 12:17:50 +08:00
import { echartOptionProfixHandle, publicConfig } from '@/packages/utils'
2022-01-25 18:19:44 +08:00
import { BarCommonConfig } from './index'
2022-01-29 21:44:22 +08:00
import { ConfigType, CreateComponentType } from '@/packages/index.d'
2022-01-29 11:44:51 +08:00
import omit from 'lodash/omit'
2022-01-27 23:16:51 +08:00
2022-02-04 12:17:50 +08:00
export default class Config extends publicConfig implements CreateComponentType {
2022-02-03 22:54:31 +08:00
public key = BarCommonConfig.key
2022-01-29 21:44:22 +08:00
public chartData: Exclude<ConfigType, ['node']> = omit(BarCommonConfig, ['node'])
2022-01-29 11:44:51 +08:00
2022-01-25 18:19:44 +08:00
// 图表配置项
2022-02-02 18:17:45 +08:00
public option = echartOptionProfixHandle({
2022-01-25 22:29:44 +08:00
tooltip: {
trigger: 'axis',
axisPointer: {
type: 'shadow'
}
},
xAxis: {
type: 'category',
2022-01-27 23:16:51 +08:00
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
2022-01-25 22:29:44 +08:00
},
yAxis: {
2022-01-27 23:16:51 +08:00
type: 'value'
2022-01-25 22:29:44 +08:00
},
series: [
{
data: [120, 200, 150, 80, 70, 110, 130],
2022-01-27 23:16:51 +08:00
type: 'bar'
}
]
2022-02-02 18:17:45 +08:00
})
}