2022-02-08 19:39:57 +08:00
|
|
|
import { echartOptionProfixHandle, publicConfig } 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-02-02 18:17:45 +08:00
|
|
|
|
2022-02-24 17:23:20 +08:00
|
|
|
export const includes = ['legend', 'xAxis', 'yAxis']
|
2022-02-02 18:17:45 +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
|
|
|
},
|
|
|
|
xAxis: {
|
|
|
|
show: true,
|
|
|
|
type: 'category',
|
|
|
|
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
|
|
|
|
},
|
|
|
|
yAxis: {
|
|
|
|
show: true,
|
|
|
|
type: 'value'
|
|
|
|
},
|
|
|
|
series: [
|
|
|
|
{
|
|
|
|
name: 'data1',
|
|
|
|
type: 'line',
|
2022-02-28 10:30:51 +08:00
|
|
|
lineStyle: {
|
2022-03-09 20:27:53 +08:00
|
|
|
type: 'solid',
|
|
|
|
width: 3,
|
|
|
|
color: {
|
|
|
|
type: 'linear',
|
|
|
|
colorStops: [
|
|
|
|
{
|
|
|
|
offset: 0,
|
|
|
|
color: '#42a5f5' // 0% 处的颜色
|
|
|
|
},
|
|
|
|
{
|
|
|
|
offset: 1,
|
|
|
|
color: '#48D8BF' // 100% 处的颜色
|
|
|
|
}
|
|
|
|
],
|
|
|
|
globalCoord: false // 缺省为 false
|
|
|
|
},
|
|
|
|
shadowColor: 'rgba(68, 181, 226, 0.3)',
|
2022-03-11 10:22:54 +08:00
|
|
|
shadowBlur: 10,
|
2022-03-09 20:27:53 +08:00
|
|
|
shadowOffsetY: 20
|
2022-02-28 10:30:51 +08:00
|
|
|
},
|
2022-02-24 17:23:20 +08:00
|
|
|
data: [120, 200, 150, 80, 70, 110, 130]
|
|
|
|
}
|
|
|
|
]
|
2022-02-26 17:38:24 +08:00
|
|
|
}
|
2022-02-02 18:17:45 +08:00
|
|
|
|
2022-02-28 10:30:51 +08:00
|
|
|
export default class Config extends publicConfig
|
|
|
|
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
|
|
|
}
|