54 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-02-08 19:39:57 +08:00
import { echartOptionProfixHandle, publicConfig } from '@/packages/public'
2022-02-02 00:46:42 +08:00
import { BarCrossrangefig } from './index'
2022-02-24 10:21:33 +08:00
import { CreateComponentType } from '@/packages/index.d'
2022-02-02 00:46:42 +08:00
import omit from 'lodash/omit'
import cloneDeep from 'lodash/cloneDeep'
2022-02-02 00:46:42 +08:00
export const includes = ['legend', 'xAxis', 'yAxis']
2022-02-02 00:46:42 +08:00
const option = echartOptionProfixHandle(
{
2022-02-02 00:46:42 +08:00
tooltip: {
show: true,
2022-02-02 00:46:42 +08:00
trigger: 'axis',
axisPointer: {
2022-02-24 17:55:29 +08:00
show: true,
2022-02-02 00:46:42 +08:00
type: 'shadow'
}
},
legend: {
show: true,
},
2022-02-02 00:46:42 +08:00
xAxis: {
show: true,
2022-02-02 00:46:42 +08:00
type: 'value',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
show: true,
2022-02-02 00:46:42 +08:00
type: 'category'
},
series: [
{
name: 'data1',
type: 'bar',
data: [120, 200, 150, 80, 70, 110, 130]
},
{
name: 'data2',
type: 'bar',
data: [130, 130, 312, 268, 155, 117, 160]
2022-02-02 00:46:42 +08:00
}
]
},
includes
)
2022-02-02 00:46:42 +08:00
export default class Config extends publicConfig
implements CreateComponentType {
public key: string = BarCrossrangefig.key
public chartConfig = omit(cloneDeep(BarCrossrangefig), ['node'])
// 图表配置项
public option = option
2022-02-02 00:46:42 +08:00
}