无数据提示echarts 配置项内容和展示

用于在接口请求没有数据时,显示无数据

配置项如下
      option = {
    "graphic": [
        {
            "type": "text",
            "left": "4%",
            "top": "4%",
            "style": {
                "text": "标题",
                "fill": "#008ACD",
                "font": "normal bolder 20px sans-serif"
            }
        },
        {
            "type": "text",
            "left": "center",
            "top": "center",
            "style": {
                "text": "No data",
                "font": "20px \"STHeiti\", sans-serif"
            }
        }
    ]
}
    
截图如下