图上添加一个长方形的框,怎么实现?echarts 折线配置项内容和展示

望大神帮一下!

配置项如下
      option = {
    title: {
        text: '这里的下面添加,与X轴等宽的矩形,最号矩形中能有文字'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    yAxis: {},
    graphic: [
        {
            type: 'rect',
            shape:{
                x:85,
                y:400,
                width:620,
                height:100
            },
            style: {
                fill:'#fff',
                stroke:'#000',
                lineWidth:5
            }
        },
        {
            type:'text',
            style:{
                text:'在这里添加所需要的文字',
                x:90,
                y:420,
                font:'20px "STHeiti", sans-serif',
                stroke:'#09f',
                lineWidth:1
            }
        }
    ],
    series: [{
        type: 'line',
        data: [220, 182, 191, 234, 290, 330, 310]
    }]
};
    
截图如下