diff --git a/site/docs/manual/component/axis.en.md b/site/docs/manual/component/axis.en.md
index e8951edb20..1bf49a3932 100644
--- a/site/docs/manual/component/axis.en.md
+++ b/site/docs/manual/component/axis.en.md
@@ -409,8 +409,8 @@ For example, to configure label rotation, it's not configured under a label obje
| labelTextBaseline | Label text vertical baseline | `'top'` | `'middle'` | `'bottom'` | `'alphabetic'` | `'hanging'` | `(datum, index, data)=>string` | `'bottom'` | |
| labelAlign | Label alignment
- 'horizontal' always horizontal
- 'parallel' parallel to axis
- 'perpendicular' perpendicular to axis | `'horizontal'` | `'parallel'` | `'perpendicular'` | `parallel` | |
| labelFilter | Label filtering | `(datum, index, data)=> boolean` | - | |
-| labelFormatter | Label formatting, accepts function or [d3-format](https://d3js.org/d3-format) supported string | `string` \| `(datum, index, array) => string` | - | |
-| labelRender | Custom label render, support HtmlString, the usage is the same as that of `labelFormatter` | `string` \| `(datum, index, array) => string` | - | |
+| labelFormatter | Label formatting, accepts function or [d3-format](https://d3js.org/d3-format) supported string | `string` \| `(datum, index, data) => string` | - | |
+| labelRender | Custom label render, support HtmlString, the usage is the same as that of `labelFormatter` | `string` \| `(datum, index, data) => string` | - | |
| transform | Label transform to avoid text overlap. Supports text ellipsis, overlap hiding, auto rotation | `Transform[]` | - | |
| labelTransform | Label transform shortcuts for local coordinate system transforms including scale, translate, rotate, skew, matrix transforms, see [transform](https://g.antv.antgroup.com/api/basic/display-object#transform) | `string` | - | |
| labelAutoHide | Auto hide overlapping labels, effective when size is set | `boolean` | `HideOverlapCfg` | - | |
diff --git a/site/docs/manual/component/axis.zh.md b/site/docs/manual/component/axis.zh.md
index 7ab60c29f9..941c13023e 100644
--- a/site/docs/manual/component/axis.zh.md
+++ b/site/docs/manual/component/axis.zh.md
@@ -408,8 +408,8 @@ chart.options({
| labelTextBaseline | 刻度标签文字垂直基线 | `'top'` | `'middle'` | `'bottom'` | `'alphabetic'` | `'hanging'` | `(datum, index, data)=>string` | `'bottom'` | |
| labelAlign | 刻度值对齐方式
- 'horizontal' 始终保持水平
- 'parallel' 平行于坐标轴
- 'perpendicular' 垂直于坐标轴 | `'horizontal'` | `'parallel'` | `'perpendicular'` | `parallel` | |
| labelFilter | 刻度值过滤 | `(datum, index, data)=> boolean` | - | |
-| labelFormatter | 刻度值格式化,可以传入一个函数或者是 [d3-format](https://d3js.org/d3-format) 支持的字符串 | `string` \| `(datum, index, array) => string` | - | |
-| labelRender | 自定义 label 渲染,支持 HtmlString,用法同 `labelFormatter` | `string` \| `(datum, index, array) => string` | - | |
+| labelFormatter | 刻度值格式化,可以传入一个函数或者是 [d3-format](https://d3js.org/d3-format) 支持的字符串 | `string` \| `(datum, index, data) => string` | - | |
+| labelRender | 自定义 label 渲染,支持 HtmlString,用法同 `labelFormatter` | `string` \| `(datum, index, data) => string` | - | |
| transform | 刻度值转换,避免文本之间发生重叠。当前支持超长文本缩略、重叠刻度值隐藏、自动旋转 | `Transform[]` | - | |
| labelTransform | 刻度值转换,在局部坐标系下进行变换的快捷方式,包括缩放、平移、旋转、拉伸、矩阵变换,具体见[transform](https://g.antv.antgroup.com/api/basic/display-object#transform) | `string` | - | |
| labelAutoHide | 自动隐藏重叠的刻度值,设置 size 值的时候生效 | `boolean` | `HideOverlapCfg` | - | |