2022-09-12 00:28:13 +08:00
|
|
|
import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public'
|
2022-02-02 18:17:45 +08:00
|
|
|
import { LineCommonConfig } from './index'
|
2022-02-24 10:21:33 +08:00
|
|
|
import { CreateComponentType } from '@/packages/index.d'
|
2022-03-12 11:29:57 +08:00
|
|
|
import { defaultTheme, chartColorsSearch } from '@/settings/chartThemes/index'
|
2022-03-20 18:11:26 +08:00
|
|
|
import dataJson from './data.json'
|
2022-02-02 18:17:45 +08:00
|
|
|
|
2022-10-14 16:46:41 +08:00
|
|
|
export const includes = ['legend', 'xAxis', 'yAxis', 'grid']
|
2022-09-11 22:53:00 +08:00
|
|
|
export const seriesItem = {
|
|
|
|
type: 'line',
|
2022-10-09 16:04:29 +08:00
|
|
|
label: {
|
|
|
|
show: true,
|
|
|
|
position: 'top',
|
|
|
|
color: '#fff',
|
|
|
|
fontSize: 12
|
|
|
|
},
|
2022-10-14 16:46:41 +08:00
|
|
|
symbolSize: 5, //设定实心点的大小
|
2022-10-09 16:04:29 +08:00
|
|
|
itemStyle: {
|
|
|
|
color: null,
|
|
|
|
borderRadius: 0
|
|
|
|
},
|
2022-09-11 22:53:00 +08:00
|
|
|
lineStyle: {
|
|
|
|
type: 'solid',
|
|
|
|
width: 3,
|
2022-10-14 16:46:41 +08:00
|
|
|
color: null
|
2022-09-11 22:53:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-09 20:27:53 +08:00
|
|
|
export const option = {
|
2022-03-09 19:22:58 +08:00
|
|
|
tooltip: {
|
|
|
|
show: true,
|
|
|
|
trigger: 'axis',
|
|
|
|
axisPointer: {
|
|
|
|
type: 'line'
|
|
|
|
}
|
|
|
|
},
|
2022-02-24 17:23:20 +08:00
|
|
|
legend: {
|
2022-02-28 10:30:51 +08:00
|
|
|
show: true
|
2022-02-24 17:23:20 +08:00
|
|
|
},
|
2022-10-14 16:46:41 +08:00
|
|
|
grid: {
|
|
|
|
show: false,
|
|
|
|
left: '10%',
|
|
|
|
top: '60',
|
|
|
|
right: '10%',
|
|
|
|
bottom: '60'
|
|
|
|
},
|
2022-02-24 17:23:20 +08:00
|
|
|
xAxis: {
|
|
|
|
show: true,
|
2022-09-11 22:53:00 +08:00
|
|
|
type: 'category'
|
2022-02-24 17:23:20 +08:00
|
|
|
},
|
|
|
|
yAxis: {
|
|
|
|
show: true,
|
|
|
|
type: 'value'
|
|
|
|
},
|
2022-03-20 18:11:26 +08:00
|
|
|
dataset: { ...dataJson },
|
2022-09-11 22:53:00 +08:00
|
|
|
series: [seriesItem, seriesItem]
|
2022-02-26 17:38:24 +08:00
|
|
|
}
|
2022-02-02 18:17:45 +08:00
|
|
|
|
2022-09-12 00:28:13 +08:00
|
|
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
2022-02-24 17:23:20 +08:00
|
|
|
public key: string = LineCommonConfig.key
|
2022-03-10 14:12:26 +08:00
|
|
|
public chartConfig = LineCommonConfig
|
2022-02-24 17:23:20 +08:00
|
|
|
// 图表配置项
|
2022-02-26 17:38:24 +08:00
|
|
|
public option = echartOptionProfixHandle(option, includes)
|
2022-02-28 10:30:51 +08:00
|
|
|
}
|