62 lines
1.3 KiB
TypeScript
Raw Normal View History

import { echartOptionProfixHandle, publicConfig } from '@/packages/public'
import { LineGradientSingleConfig } from './index'
import { CreateComponentType } from '@/packages/index.d'
2022-02-25 11:19:51 +08:00
import { graphic } from 'echarts/core'
import { defaultTheme, chartColorsSearch } from '@/settings/chartThemes/index'
2022-03-20 18:11:26 +08:00
import dataJson from './data.json'
export const includes = ['legend', 'xAxis', 'yAxis']
2022-03-09 19:22:58 +08:00
const options = {
tooltip: {
show: true,
trigger: 'axis',
axisPointer: {
type: 'line'
}
},
legend: {
show: true
},
2022-03-09 19:22:58 +08:00
xAxis: {
show: true,
type: 'category',
},
2022-03-09 19:22:58 +08:00
yAxis: {
show: true,
type: 'value'
},
2022-03-20 18:11:26 +08:00
dataset: { ...dataJson },
2022-03-09 19:22:58 +08:00
series: [
{
type: 'line',
smooth: false,
lineStyle: {
type: 'solid',
width: 3
2022-03-09 19:22:58 +08:00
},
areaStyle: {
opacity: 0.8,
color: new graphic.LinearGradient(0, 0, 0, 1, [
{
offset: 0,
color: chartColorsSearch[defaultTheme][3]
2022-03-09 19:22:58 +08:00
},
{
offset: 1,
color: 'rgba(0,0,0,0)'
2022-03-09 19:22:58 +08:00
}
])
}
2022-03-09 19:22:58 +08:00
}
]
}
2022-02-25 11:19:51 +08:00
export default class Config extends publicConfig
implements CreateComponentType {
public key: string = LineGradientSingleConfig.key
public chartConfig = LineGradientSingleConfig
// 图表配置项
2022-03-09 19:22:58 +08:00
public option = echartOptionProfixHandle(options, includes)
2022-02-25 11:19:51 +08:00
}