标记图表中某个范围的数据
图表标域,常用于标记图表中某个范围的数据,例如标出某段时间投放了广告
https://echarts.apache.org/zh/option.html#series-line.markArea
series: []
{
data: [], // asyncData
name: '数据项名称',
type: 'line',
symbol: 'none',
barMaxWidth: 10,
lineStyle: {
width: 1.5,
type: 'solid',
},
markArea: {
silent: false,
data: [], // asyncData
label: {
show: false,
width: 60,
},
emphasis: {
label: {
position: 'bottom',
show: true,
},
},
}
}