From 646078ba3ee6b8baad289eeaf0baac65b4384903 Mon Sep 17 00:00:00 2001 From: yangweitao Date: Wed, 14 Dec 2022 16:21:31 +0800 Subject: [PATCH] =?UTF-8?q?fixed=2089e50b7=20from=20https://gitee.com/wood?= =?UTF-8?q?yangwt/docs/pulls/12501=20=E5=AF=B9step=E7=9A=84=E6=9C=80?= =?UTF-8?q?=E5=B0=8F=E7=B2=BE=E5=BA=A6=E5=81=9A=E5=87=BA=E9=99=90=E5=88=B6?= =?UTF-8?q?=EF=BC=8C=E4=B8=8D=E5=8F=AF=E4=BB=A5=E6=97=A0=E9=99=90=E5=B0=8F?= =?UTF-8?q?=EF=BC=8C=E6=97=A0=E6=B3=95=E8=AE=A1=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yangweitao --- .../reference/arkui-ts/ts-basic-components-slider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-slider.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-slider.md index 4ee4b62624..647260276e 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-slider.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-slider.md @@ -23,7 +23,7 @@ Slider(options?: {value?: number, min?: number, max?: number, step?: number, sty | value | number | 否 | 当前进度值。
默认值:0 | | min | number | 否 | 设置最小值。
默认值:0 | | max | number | 否 | 设置最大值。
默认值:100 | -| step | number | 否 | 设置Slider滑动步长。
默认值:1 | +| step | number | 否 | 设置Slider滑动步长。
默认值:1
取值范围:[0.01, max] | | style | SliderStyle | 否 | 设置Slider的滑块与滑轨显示样式。
默认值:SliderStyle.OutSet | | direction8+ | [Axis](ts-appendix-enums.md#axis) | 否 | 设置滑动条滑动方向为水平或竖直方向。
默认值:Axis.Horizontal | | reverse8+ | boolean | 否 | 设置滑动条取值范围是否反向,横向Slider默认为从左往右滑动,竖向Slider默认为从上往下滑动。
默认值:false | -- GitLab