2022-09-17 11:18:57 +08:00

61 lines
1.3 KiB
TypeScript

import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public'
import { HeatmapConfig } from './index'
import { CreateComponentType } from '@/packages/index.d'
import { cloneDeep } from 'lodash'
import dataJson from './data.json'
export const includes = ['xAxis', 'yAxis']
export const option = {
dataset: { ...dataJson },
tooltip: {
position: 'top'
},
xAxis: {
data: dataJson.xAxis
},
yAxis: {
data: dataJson.yAxis
},
visualMap: {
show: true,
min: 0,
max: 10,
itemWidth: 20,
itemHeight: 140,
calculable: true,
orient: 'horizontal',
inRange: {
color: ['#4661c2', '#263253']
}
},
series: [
{
name: '',
type: 'heatmap',
data: dataJson.seriesData,
label: {
show: true
},
emphasis: {
itemStyle: {
borderColor: '#333',
borderWidth: 1,
shadowBlur: 10,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
},
progressive: 1000,
animation: false
}
]
}
export default class Config extends PublicConfigClass implements CreateComponentType {
public key: string = HeatmapConfig.key
public chartConfig = cloneDeep(HeatmapConfig)
// 图表配置项
public option = echartOptionProfixHandle(option, includes)
}