diff --git a/en/application-dev/reference/arkui-ts/ts-container-sidebarcontainer.md b/en/application-dev/reference/arkui-ts/ts-container-sidebarcontainer.md
index 6dc717fffb5d69c1174cca33b0cc2a9433438f37..ec0da674639220b58cc96fb9efada321d243ceb1 100644
--- a/en/application-dev/reference/arkui-ts/ts-container-sidebarcontainer.md
+++ b/en/application-dev/reference/arkui-ts/ts-container-sidebarcontainer.md
@@ -1,6 +1,6 @@
# SideBarContainer
->  **NOTE**
+> **NOTE**
> This component is supported since API version 8. Updates will be marked with a superscript to indicate their earliest API version.
@@ -39,9 +39,10 @@ SideBarContainer( type?: SideBarContainerType )
| showSideBar | boolean | true | Whether to display the sidebar.|
| controlButton | ButtonStyle | - | Attributes of the sidebar control button.|
| showControlButton | boolean | true | Whether to display the sidebar control button.|
-| sideBarWidth | number | 200 | Width of the sidebar.|
-| minSideBarWidth | number | 200 | Minimum width of the sidebar.|
-| maxSideBarWidth | number | 280 | Maximum width of the sidebar.|
+| sideBarWidth | number \| [Length9+](../../ui/ts-types.md) | 200 | Width of the sidebar.|
+| minSideBarWidth | number \| [Length9+](../../ui/ts-types.md) | 200 | Minimum width of the sidebar.|
+| maxSideBarWidth | number \| [Length9+](../../ui/ts-types.md) | 280 | Maximum width of the sidebar.|
+| autoHide9+ | boolean | true | Whether to automatically hide the sidebar when it is dragged to be smaller than the minimum width.|
- ButtonStyle
| Name| Type| Mandatory| Default Value| Description|
@@ -59,7 +60,7 @@ SideBarContainer( type?: SideBarContainerType )
| Name| Description|
| -------- | -------- |
-| onChange(callback: (value: boolen) => void) | Triggered when the status of the sidebar switches between shown and hidden.
The value **true** means that the sidebar is shown, and **false** means that the sidebar is hidden.| +| onChange(callback: (value: boolean) => void) | Triggered when the status of the sidebar switches between shown and hidden.
The value **true** means that the sidebar is shown, and **false** means the opposite. | ## Example