diff --git a/doc/docs/guide/charts.md b/doc/docs/guide/charts.md
index a2f2b96d..bf443319 100644
--- a/doc/docs/guide/charts.md
+++ b/doc/docs/guide/charts.md
@@ -230,3 +230,14 @@
![img23](../picture/charts/img_23.png)
**如有问题,请提交 [Issue](https://gitee.com/anji-plus/report/issues)
**
+
+## 雷达图
+
+基本操作和表格是一致,通过配置栏的新增按钮和操作按钮对雷达顶点数量进行修改,可生成5边雷达,6边雷达等等,key值和雷达顶点保持一致,从最上端顶点逆时针规划其他顶点。
+![img26](../picture/charts/img_26.png)
+
+### 数据格式
+
+数据格式和柱线、多柱线都是类似的,注意实际作为name的字段,比如时间字段,有且只能有1个,数据集选择时选择名称,其余是顶点字段,不明白可以看静态数据格式。
+![img27](../picture/charts/img_27.png)
+![img28](../picture/charts/img_28.png)
diff --git a/doc/docs/picture/charts/img_26.png b/doc/docs/picture/charts/img_26.png
new file mode 100644
index 00000000..ef148b84
Binary files /dev/null and b/doc/docs/picture/charts/img_26.png differ
diff --git a/doc/docs/picture/charts/img_27.png b/doc/docs/picture/charts/img_27.png
new file mode 100644
index 00000000..cd9299fc
Binary files /dev/null and b/doc/docs/picture/charts/img_27.png differ
diff --git a/doc/docs/picture/charts/img_28.png b/doc/docs/picture/charts/img_28.png
new file mode 100644
index 00000000..8e5ce642
Binary files /dev/null and b/doc/docs/picture/charts/img_28.png differ
diff --git a/report-core/src/main/resources/db/migration/V1.0.24__add_dict_radar.sql b/report-core/src/main/resources/db/migration/V1.0.24__add_dict_radar.sql
index 63701c6d..9be8c214 100644
--- a/report-core/src/main/resources/db/migration/V1.0.24__add_dict_radar.sql
+++ b/report-core/src/main/resources/db/migration/V1.0.24__add_dict_radar.sql
@@ -3,4 +3,4 @@
REPLACE INTO `aj_report`.`gaea_dict`(`dict_name`, `dict_code`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('雷达属性', 'RADAR_PROPERTIES', '雷达属性', 'admin', NOW(), 'admin', NOW(), 1);
REPLACE INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('RADAR_PROPERTIES', '名称', 'name', NULL, 1, 'zh', NULL, NULL, 'admin', NOW(), 'admin', NOW(), 1);
-REPLACE INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('RADAR_PROPERTIES', '雷达', 'radar', NULL, 1, 'zh', NULL, NULL, 'admin', NOW(), 'admin', NOW(), 1);
+REPLACE INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('RADAR_PROPERTIES', '雷达顶点', 'radar', NULL, 1, 'zh', NULL, NULL, 'admin', NOW(), 'admin', NOW(), 1);