2022-02-08 19:39:57 +08:00
|
|
|
import { echartOptionProfixHandle, publicConfig } from '@/packages/public'
|
2022-01-25 18:19:44 +08:00
|
|
|
import { BarCommonConfig } from './index'
|
2022-02-24 10:21:33 +08:00
|
|
|
import { CreateComponentType } from '@/packages/index.d'
|
2022-01-29 11:44:51 +08:00
|
|
|
import omit from 'lodash/omit'
|
2022-02-24 10:21:33 +08:00
|
|
|
import cloneDeep from 'lodash/cloneDeep'
|
2022-01-27 23:16:51 +08:00
|
|
|
|
2022-02-24 17:23:20 +08:00
|
|
|
export const includes = ['legend', 'xAxis', 'yAxis']
|
2022-01-29 11:44:51 +08:00
|
|
|
|
2022-02-26 17:38:24 +08:00
|
|
|
export const option = {
|
|
|
|
tooltip: {
|
|
|
|
show: true,
|
|
|
|
trigger: 'axis',
|
|
|
|
axisPointer: {
|
2022-02-24 17:23:20 +08:00
|
|
|
show: true,
|
2022-02-26 17:38:24 +08:00
|
|
|
type: 'shadow'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
legend: {
|
|
|
|
show: true,
|
|
|
|
},
|
|
|
|
xAxis: {
|
|
|
|
show: true,
|
|
|
|
type: 'category',
|
|
|
|
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
|
|
|
|
},
|
|
|
|
yAxis: {
|
|
|
|
show: true,
|
|
|
|
type: 'value'
|
|
|
|
},
|
|
|
|
series: [
|
|
|
|
{
|
|
|
|
name: 'data1',
|
|
|
|
type: 'bar',
|
|
|
|
barWidth: null,
|
|
|
|
itemStyle: {
|
|
|
|
color: null,
|
|
|
|
borderRadius: 0
|
|
|
|
},
|
|
|
|
data: [120, 200, 150, 80, 70, 110, 130]
|
2022-01-25 22:29:44 +08:00
|
|
|
},
|
2022-02-26 17:38:24 +08:00
|
|
|
{
|
|
|
|
name: 'data2',
|
|
|
|
type: 'bar',
|
|
|
|
barWidth: null,
|
|
|
|
itemStyle: {
|
|
|
|
color: null,
|
|
|
|
borderRadius: 0
|
2022-02-06 01:04:05 +08:00
|
|
|
},
|
2022-02-26 17:38:24 +08:00
|
|
|
data: [130, 130, 312, 268, 155, 117, 160]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2022-02-24 17:23:20 +08:00
|
|
|
|
|
|
|
export default class Config extends publicConfig
|
|
|
|
implements CreateComponentType {
|
|
|
|
public key = BarCommonConfig.key
|
2022-03-09 19:22:58 +08:00
|
|
|
public chartConfig = omit(cloneDeep(BarCommonConfig), ['node', 'conNode'])
|
2022-02-24 17:23:20 +08:00
|
|
|
// 图表配置项
|
2022-02-26 17:38:24 +08:00
|
|
|
public option = echartOptionProfixHandle(option, includes)
|
2022-02-24 17:23:20 +08:00
|
|
|
}
|