57 lines
1.2 KiB
TypeScript
Raw Normal View History

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'
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
export const includes = ['legend', 'xAxis', 'yAxis']
export const seriesItem = {
type: 'line',
2022-10-09 16:04:29 +08:00
label: {
show: true,
position: 'top',
color: '#fff',
fontSize: 12
},
symbolSize: 5, //设定实心点的大小
itemStyle: {
color: null,
borderRadius: 0
},
lineStyle: {
type: 'solid',
width: 3,
2022-10-09 16:04:29 +08:00
color: null,
}
}
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'
}
},
legend: {
show: true
},
xAxis: {
show: true,
type: 'category'
},
yAxis: {
show: true,
type: 'value'
},
2022-03-20 18:11:26 +08:00
dataset: { ...dataJson },
series: [seriesItem, seriesItem]
2022-02-26 17:38:24 +08:00
}
2022-02-02 18:17:45 +08:00
export default class Config extends PublicConfigClass implements CreateComponentType {
public key: string = LineCommonConfig.key
public chartConfig = LineCommonConfig
// 图表配置项
2022-02-26 17:38:24 +08:00
public option = echartOptionProfixHandle(option, includes)
}