diff --git a/en/Parse-SDK-JS.md b/en/Parse-SDK-JS.md
index f9840c42b42ce6f44dadd600665bb360d5ccb853..8d4d5d6eb7ab89561c684a8dee6cc5762461fe09 100644
--- a/en/Parse-SDK-JS.md
+++ b/en/Parse-SDK-JS.md
@@ -16,9 +16,9 @@
## Installation and Usage
-> [!TIP] 需要配套的服务和三方依赖
+> [!TIP] It requires supporting services and third-party dependencies
-Parse JS SDK 兼容以下版本的 Parse Server,Parse Server 服务端搭建可参考[https://github.com/parse-community/parse-server/blob/alpha/README.md](https://github.com/parse-community/parse-server/blob/alpha/README.md)。
+The Parse JS SDK is compatible with the following versions of Parse Server. For the setup of the Parse Server server, please refer to[https://github.com/parse-community/parse-server/blob/alpha/README.md](https://github.com/parse-community/parse-server/blob/alpha/README.md)。
| Parse JS SDK | Parse Server |
| :--------------: | :--------------: |
@@ -27,6 +27,12 @@ Parse JS SDK 兼容以下版本的 Parse Server,Parse Server 服务端搭建
> [!TIP] This library depends on[@react-native-oh-tpl/async-storage](/zh-cn/react-native-async-storage-async-storage.md)、[@react-native-oh-tpl/react-native-get-random-values](/zh-cn/react-native-get-random-values.md)
+Please go to the Releases release address of the third-party library to view the supporting version information: @react-native-ohos/pull-to-refresh Releases.
+
+|Version |Support RN version|
+| --------|---------- |
+| 5.3.0 | 0.72/0.77 |
+
Go to the project directory and execute the following instruction:
@@ -209,116 +215,117 @@ If it is not included, follow the guide provided in [@react-native-oh-tpl/async-
This document is verified based on the following versions:
1. RNOH: 0.72.27; SDK: HarmonyOS-Next-DB1 5.0.0.29(SP1); IDE: DevEco Studio 5.0.3.403; ROM: 3.0.0.25;
+2. RNOH: 0.77.1;SDK:HarmonyOS 5.1.1.208 (API Version 19 Release) ;IDE:DevEco Studio:5.1.1.830; ROM: HarmonyOS 6.0.0.112 SP12;
## API
-不同版本对应的 API 也不同,详情请查看[Parse-SDK-JS 官方文档](https://parseplatform.org/Parse-SDK-JS/api/5.3.0/index.html)。
+The apis corresponding to different versions are also different. For details, please refer to the official documentation of [Parse-SDK-JS](https://parseplatform.org/Parse-SDK-JS/api/5.3.0/index.html)。
> [!TIP] The **Platform** column indicates the platform where the properties are supported in the original third-party library.
> [!TIP] If the value of **HarmonyOS Support** is **yes**, it means that the HarmonyOS platform supports this property; **no** means the opposite; **partially** means some capabilities of this property are supported. The usage method is the same on different platforms and the effect is the same as that of iOS or Android.
-**Parse**: Parse 是 Parse-SDK-JS 的核心对象,包含所有 Parse API 类和函数。
+**Parse**: Parse is the core object of Parse-SDK-JS, containing all Parse API classes and functions.
| Name | Description | Type | Required | Platform | HarmonyOS Support |
| --------------- | ------------------------------------------------------------------------ | --------------------------------------------------------------------------- | -------- | ----------- | ----------------- |
-| initialize | 初始化 Parse SDK,设置应用程序的 ID 和密钥。通常在应用程序的入口处调用。 | (applicationId: string, javaScriptKey?: string, masterKey?: string) => void | yes | iOS/Android | yes |
-| setAsyncStorage | 设置 Parse SDK 使用的 AsyncStorage 实例,用于存储会话令牌等信息。 | (storage:AsyncStorage) => void | yes | iOS/Android | yes |
+| initialize | Initialize the Parse SDK and set the ID and key of the application. It is usually called at the entrance of the application. | (applicationId: string, javaScriptKey?: string, masterKey?: string) => void | yes | iOS/Android | yes |
+| setAsyncStorage | Set the AsyncStorage instance used by the Parse SDK to store session tokens and other information. | (storage:AsyncStorage) => void | yes | iOS/Android | yes |
-**Parse.ACL**: 访问权限对象。
+**Parse.ACL**: Access permission object.
| Name | Description | Type | Required | Platform | HarmonyOS Support |
| -------------------- | ---------------------------------------------- | ------------------------------------------ | -------- | ----------- | ----------------- |
-| setPublicReadAccess | 设置是否允许公共(未认证用户)读取对象。 | (allowed: boolean) => void | no | iOS/Android | yes |
-| setPublicWriteAccess | 设置是否允许公共(未认证用户)写入对象。 | (allowed: boolean) => void | no | iOS/Android | yes |
-| getPublicReadAccess | 获取是否允许公共(未认证用户)读取对象。 | () => boolean | no | iOS/Android | yes |
-| getPublicWriteAccess | 获取是否允许公共(未认证用户)写入对象的权限。 | () => boolean | no | iOS/Android | yes |
-| setReadAccess | 设置特定用户是否有读取对象的权限。 | (userId: string, allowed: boolean) => void | no | iOS/Android | yes |
-| setWriteAccess | 设置特定用户是否有写入对象的权限。 | (userId: string, allowed: boolean) => void | no | iOS/Android | yes |
-| getReadAccess | 获取特定用户是否有读取对象的权限。 | (userId: string) => boolean | no | iOS/Android | yes |
-| getWriteAccess | 获取特定用户是否有写入对象的权限。 | (userId: string) => boolean | no | iOS/Android | yes |
+| setPublicReadAccess | Set whether to allow public (unauthenticated users) to read the object. | (allowed: boolean) => void | no | iOS/Android | yes |
+| setPublicWriteAccess | Set whether to allow public (unauthenticated users) to write to the object. | (allowed: boolean) => void | no | iOS/Android | yes |
+| getPublicReadAccess | Obtain whether public (unauthenticated users) are allowed to read the object. | () => boolean | no | iOS/Android | yes |
+| getPublicWriteAccess | Obtain the permission to allow public (unauthenticated users) to write to the object. | () => boolean | no | iOS/Android | yes |
+| setReadAccess | Set whether a specific user has the permission to read objects. | (userId: string, allowed: boolean) => void | no | iOS/Android | yes |
+| setWriteAccess | Set whether a specific user has the permission to write objects. | (userId: string, allowed: boolean) => void | no | iOS/Android | yes |
+| getReadAccess | Obtain whether a specific user has the permission to read objects. | (userId: string) => boolean | no | iOS/Android | yes |
+| getWriteAccess | Obtain whether a specific user has the permission to write objects. | (userId: string) => boolean | no | iOS/Android | yes |
-**Parse.Object**: 通常情况下,您不会直接调用此方法。建议您使用 Parse.Object 的子类,通过调用 `extend` 方法创建子类对象。
+**Parse.Object**: Under normal circumstances, you won't call this method directly. It is recommended that you use a subclass of Parse.Object and create a subclass object by calling the 'extend' method。
| Name | Description | Type | Required | Platform | HarmonyOS Support |
| ---------------- | ------------------------------------------------------------------- | ---------------------------------------------------------------------------- | -------- | ----------- | ----------------- |
-| set | 设置数据对象的属性值,其中 `key` 是属性名,`value` 是对应的属性值。 | (key: string\|object, value: string\|object, options: object) => ParseObject | no | iOS/Android | yes |
-| get | 获取数据对象的指定属性值,通过 `key` 指定属性名。 | (attr: string) => any | no | iOS/Android | yes |
-| unset | 移除数据对象的指定属性值,通过 `key` 指定属性名。 | (attr: string) => ParseObject | no | iOS/Android | yes |
-| increment | 增加指定属性的数值类型值,`amount` 是增加的数量。 | (attr: String, amount: Number) => ParseObject | no | iOS/Android | yes |
-| add | 添加一个值到数组类型的属性中,`value` 是要添加的值。 | (attr: string, item) => ParseObject | no | iOS/Android | yes |
-| remove | 从数组类型的属性中移除一个值,`value` 是要移除的值。 | (attr: string, item) => ParseObject | no | iOS/Android | yes |
-| save | 将数据对象保存到 Parse 服务器上,如果对象不存在则创建,存在则更新。 | () => Promise | no | iOS/Android | yes |
-| fetch | 从 Parse 服务器上获取最新的数据对象信息。 | (options: object) => Promise | no | iOS/Android | yes |
-| destroy | 从 Parse 服务器上删除当前数据对象。 | (options: object) => Promise | no | iOS/Android | yes |
-| fetchWithInclude | 在获取对象时,包含在查询中指定的关联对象。 | (keys: string\|Array
react-native-progress
-
+
@@ -14,9 +14,15 @@
> [!TIP] [GitHub address](https://github.com/react-native-oh-library/react-native-progress)
+| Version | Package Name | Repository | Release | Support RN version |
+| ------- | ------------ | ----------- |----------|--------------------|
+| 5.0.1 | @react-native-oh-tpl/react-native-progress |[Github](https://github.com/react-native-oh-library/react-native-progress) | [Github Releases](https://github.com/react-native-oh-library/react-native-progress) | 0.72 |
+| 5.1.0 | @react-native-ohos/react-native-progress |[GitCode](https://gitcode.com/openharmony-sig/rntpc_react-native-progress) |[GitCode Releases](https://gitcode.com/openharmony-sig/rntpc_react-native-audio/releases) | 0.77 |
+
## Installation and Usage
-Find the matching version information in the release address of a third-party library: [@react-native-oh-tpl/react-native-progress Releases](https://github.com/react-native-oh-library/react-native-progress/releases).For older versions that are not published to npm, please refer to the [installation guide](/en/tgz-usage-en.md) to install the tgz package.
+Please go to the Releases release address of the third-party library to view the supporting version information: [@react-native-ohos/react-native-progress Releases](https://github.com/react-native-oh-library/react-native-progress/releases).
+
Go to the project directory and execute the following instruction:
@@ -27,13 +33,21 @@ Go to the project directory and execute the following instruction:
#### **npm**
```bash
+# V0.72
npm install @react-native-oh-tpl/react-native-progress
+
+# V0.77
+npm install @react-native-ohos/react-native-progress
```
#### **yarn**
```bash
-yarn add @react-native-oh-tpl/react-native-progress
+# V0.72
+yarn install @react-native-oh-tpl/react-native-progress
+
+#V0.77
+yarn install @react-native-ohos/react-native-progress
```
@@ -140,7 +154,10 @@ The HarmonyOS implementation of this library depends on the native code from @re
To use this repository, you need to use the correct React-Native and RNOH versions. In addition, you need to use DevEco Studio and the ROM on your phone.
-Check the release version information in the release address of the third-party library: [@react-native-oh-tpl/react-native-progress Releases](https://github.com/react-native-oh-library/react-native-progress/releases)
+Please go to the Releases release address of the third-party library to view the supporting version information: [@react-native-ohos/react-native-progress Releases](https://github.com/react-native-oh-library/react-native-progress/releases).
+
+1. RNOH: 0.72.27; SDK: HarmonyOS-Next-DB1 5.0.0.29(SP1); IDE: DevEco Studio 5.0.3.403; ROM: 3.0.0.25;
+2. RNOH: 0.77.1;SDK:HarmonyOS 5.1.1.208 (API Version 19 Release) ;IDE:DevEco Studio:5.1.1.830; ROM: HarmonyOS 6.0.0.112 SP12;
## Properties
diff --git a/en/react-native-sticky-parallax-header.md b/en/react-native-sticky-parallax-header.md
index 7ed9cf630d04f609b80e7f02b4297d9d6499f6d6..12e6a604bd7b0e0992ad37f67d1e59d13bab0340 100644
--- a/en/react-native-sticky-parallax-header.md
+++ b/en/react-native-sticky-parallax-header.md
@@ -12,11 +12,17 @@
react-native-progress
-
+
@@ -14,9 +14,16 @@
> [!TIP] [Github 地址](https://github.com/react-native-oh-library/react-native-progress)
+| 三方库版本 | 包 名 | 仓库地址 | 发布信息 | 支持RN版本 |
+| -------- | -------- | --------- |---------|----------|
+| 5.0.1 | @react-native-oh-tpl/react-native-progress |[Github](https://github.com/react-native-oh-library/react-native-progress) | [Github Releases](https://github.com/react-native-oh-library/react-native-progress/releases) | 0.72 |
+| 5.1.0 | @react-native-ohos/react-native-progress |[GitCode](https://gitcode.com/openharmony-sig/rntpc_react-native-progress) |[GitCode Releases](https://gitcode.com/openharmony-sig/rntpc_react-native-progress/releases) | 0.77 |
+
## 安装与使用
-请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/react-native-progress Releases](https://github.com/react-native-oh-library/react-native-progress/releases) 。对于未发布到npm的旧版本,请参考[安装指南](/zh-cn/tgz-usage.md)安装tgz包。
+请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/react-native-progress Releases](https://github.com/react-native-oh-library/react-native-progress/releases)。
+
+
进入到工程目录并输入以下命令:
@@ -25,13 +32,21 @@
#### **npm**
```bash
+# V0.72
npm install @react-native-oh-tpl/react-native-progress
+
+# V0.77
+npm install @react-native-ohos/react-native-progress
```
#### **yarn**
```bash
-yarn add @react-native-oh-tpl/react-native-progress
+# V0.72
+yarn install @react-native-oh-tpl/react-native-progress
+
+# V0.77
+yarn install @react-native-ohos/react-native-progress
```
@@ -140,6 +155,10 @@ const styles = StyleSheet.create({
请到三方库相应的 Releases 发布地址查看 Release 配套的版本信息:[@react-native-oh-tpl/react-native-progress Releases](https://github.com/react-native-oh-library/react-native-progress/releases)
+1. RNOH: 0.72.27; SDK: HarmonyOS-Next-DB1 5.0.0.29(SP1); IDE: DevEco Studio 5.0.3.403; ROM: 3.0.0.25;
+2. RNOH: 0.77.1;SDK:HarmonyOS 5.1.1.208 (API Version 19 Release) ;IDE:DevEco Studio:5.1.1.830; ROM: HarmonyOS 6.0.0.112 SP12;
+
+
## 属性
> [!TIP] "Platform"列表示该属性在原三方库上支持的平台。
@@ -148,18 +167,18 @@ const styles = StyleSheet.create({
详情见[react-native-progress](https://github.com/oblador/react-native-progress?tab=readme-ov-file#properties-for-all-progress-components)
-### Properties for all progress components:
+### 属性,用于所有进度组件:
| Name | Description | Type | Required | Platform | HarmonyOS Support |
| ------------------------------ | ---------------------------------------------------------------------------- | ------- | -------- | -------- | ----------------- |
-| animated | Whether or not to animate changes to `progress`. | boolean | No | All | Yes |
-| indeterminate | If set to true, the indicator will spin and `progress` prop will be ignored. | boolean | No | All | Yes |
-| indeterminateAnimationDuration | Sets animation duration in milliseconds when indeterminate is set. | number | No | All | Yes |
-| progress | Progress of whatever the indicator is indicating. A number between 0 and 1. | number | No | All | Yes |
-| color | Fill color of the indicator. | string | No | All | Yes |
-| unfilledColor | Color of the remaining progress. | string | No | All | Yes |
-| borderWidth | Width of outer border, set to `0` to remove. | number | No | All | Yes |
-| borderColor | Color of outer border. | string | No | All | Yes |
+| animated | 是否为“进度”添加动画。 | boolean | No | All | Yes |
+| indeterminate | 如果设置为true,则指示器将旋转并且“progress”将被忽略。 | boolean | No | All | Yes |
+| indeterminateAnimationDuration | 当设置indeterminate时,以毫秒为单位设置动画持续时间。 | number | No | All | Yes |
+| progress | 指标所显示的进度。0和1之间的数字。 | number | No | All | Yes |
+| color | 指示灯的填充颜色。 | string | No | All | Yes |
+| unfilledColor | 剩余进度的颜色。 | string | No | All | Yes |
+| borderWidth | 外边框的宽度,设置为“0”以移除。 | number | No | All | Yes |
+| borderColor | 外边框的颜色。 | string | No | All | Yes |
### `Progress.Bar`:
@@ -167,12 +186,12 @@ All of the props under _Properties_ in addition to the following:
| Name | Description | Type | Required | Platform | HarmonyOS Support |
| --------------- | ------------------------------------------------------------------------------ | ------------------------------- | -------- | -------- | ----------------- |
-| width | Full width of the progress bar, set to `null` to use automatic flexbox sizing. | number \| null | No | All | Yes |
-| height | Height of the progress bar. | number | No | All | Yes |
-| borderRadius | Rounding of corners, set to `0` to disable. | number | No | All | Yes |
-| useNativeDriver | Use native driver for the animations. | boolean | No | All | Yes |
-| animationConfig | Config that is passed into the `Animated` function. | function | No | All | Yes |
-| animationType | Animation type to animate the progress, one of: `decay`, `timing`, `spring`. | 'decay' \| 'timing' \| 'spring' | No | All | Yes |
+| width | 进度条的全宽度,设置为‘ null ’以使用自动伸缩大小。 | number \| null | No | All | Yes |
+| height | 进度条的高度。 | number | No | All | Yes |
+| borderRadius | 圆角,设置为‘ 0 ’禁用。 | number | No | All | Yes |
+| useNativeDriver | 动画使用原生驱动。 | boolean | No | All | Yes |
+| animationConfig | 传入‘ Animated ’函数的配置。 | function | No | All | Yes |
+| animationType | 动画类型:`decay`, `timing`, `spring`。 | 'decay' \| 'timing' \| 'spring' | No | All | Yes |
### `Progress.Circle`:
@@ -180,16 +199,16 @@ All of the props under _Properties_ in addition to the following:
| Name | Description | Type | Required | Platform | HarmonyOS Support |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- | -------- | -------- | ----------------- |
-| size | Diameter of the circle. | number | No | All | Yes |
-| endAngle | Determines the endAngle of the circle. A number between `0` and `1`. The final endAngle would be the number multiplied by 2π | number | No | All | Yes |
-| thickness | Thickness of the inner circle. | number | No | All | Yes |
-| showsText | Whether or not to show a text representation of current progress. | boolean | No | All | Yes |
-| formatText | A function returning a string to be displayed for the textual representation. | function | No | All | Yes |
-| textStyle | Styles for progress text, defaults to a same `color` as circle and `fontSize` proportional to `size` prop. | TextStyle | No | All | Yes |
-| allowFontScaling | Whether or not to respect device font scale setting. | boolean | No | All | Yes |
-| direction | Direction of the circle `clockwise` or `counter-clockwise`. | 'clockwise' \| 'counter-clockwise' | No | All | Yes |
-| strokeCap | Stroke Cap style for the circle `butt`, `square` or `round`. | 'butt' \| 'square' \| 'round' | No | All | Yes |
-| fill | Fill color of the inner circle. | string | No | All | Yes |
+| size | 圆的直径。 | number | No | All | Yes |
+| endAngle | 确定圆的endAngle。一个介于0和1之间的数字。最终的角度将是数字乘以2π| number | No | All | Yes |
+| thickness | 内圆的厚度。 | number | No | All | Yes |
+| showsText | 是否显示当前进度的文本表示。 | boolean | No | All | Yes |
+| formatText | 返回要显示文本表示的字符串的一个函数。 | function | No | All | Yes |
+| textStyle | 进度文本的样式,默认与circle相同的`color`, `fontSize`与`size` prop成比例。 | TextStyle | No | All | Yes |
+| allowFontScaling | 是否遵守设备字体比例设置 | boolean | No | All | Yes |
+| direction | 圆的方向顺时针或逆时针。 | 'clockwise' \| 'counter-clockwise' | No | All | Yes |
+| strokeCap | 圆形的笔画样式为‘ butt ’, ‘ square ’或‘ round ’。 | 'butt' \| 'square' \| 'round' | No | All | Yes |
+| fill | 填充内圆的颜色。 | string | No | All | Yes |
### `Progress.Pie`:
@@ -197,21 +216,21 @@ All of the props under _Properties_ in addition to the following:
| Name | Description | Type | Required | Platform | HarmonyOS Support |
| ---- | -------------------- | ------ | -------- | -------- | ----------------- |
-| size | Diameter of the pie. | number | No | All | Yes |
+| size | 饼图的直径。 | number | No | All | Yes |
### `Progress.CircleSnail`:
| Name | Description | Type | Required | Platform | HarmonyOS Support |
| ---------------- | ----------------------------------------------------------------------------------------- | ---------------------------------- | -------- | -------- | ----------------- |
-| animating | If the circle should animate. | boolean | No | All | Yes |
-| hidesWhenStopped | If the circle should be removed when not animating. | boolean | No | All | Yes |
-| size | Diameter of the circle. | number | No | All | Yes |
-| color | Color of the circle, use an array of colors for rainbow effect. | string \| string[] | No | All | Yes |
-| thickness | Thickness of the circle. | number | No | All | Yes |
-| duration | Duration of animation. | number | No | All | Yes |
-| spinDuration | Duration of spin (orbit) animation. | number | No | All | Yes |
-| strokeCap | Stroke Cap style for the circle `butt`, `square` or `round`. | 'butt' \| 'square' \| 'round' | No | All | Yes |
-| direction | Direction in which the circle spins, either "clockwise" or "counter-clockwise" (default). | 'clockwise' \| 'counter-clockwise' | No | All | Yes |
+| animating | 是否有圆形动画 | boolean | No | All | Yes |
+| hidesWhenStopped | 是否需要在动画结束时移除圆。 | boolean | No | All | Yes |
+| size | 圆的直径。 | number | No | All | Yes |
+| color | 圆圈的颜色,使用一组颜色的彩虹效果。 | string \| string[] | No | All | Yes |
+| thickness | 圆的厚度。 | number | No | All | Yes |
+| duration | 动画持续时间。 | number | No | All | Yes |
+| spinDuration | 自旋(轨道)动画的持续时间。 | number | No | All | Yes |
+| strokeCap | 圆形的笔画样式为‘ butt ’, ‘ square ’或‘ round ’。 | 'butt' \| 'square' \| 'round' | No | All | Yes |
+| direction | 圆旋转的方向,“顺时针”或“逆时针”(默认)。 | 'clockwise' \| 'counter-clockwise' | No | All | Yes |
## 遗留问题
diff --git a/zh-cn/react-native-sticky-parallax-header.md b/zh-cn/react-native-sticky-parallax-header.md
index 716a153ae09b1b2dbfbcae71b09cf6b6b258ca4c..c11460acda68f391b842c3b5c93032eec647eda3 100644
--- a/zh-cn/react-native-sticky-parallax-header.md
+++ b/zh-cn/react-native-sticky-parallax-header.md
@@ -14,9 +14,15 @@
> [!TIP] [Github 地址](https://github.com/react-native-oh-library/react-native-sticky-parallax-header)
+| 三方库版本 | 包 名 | 仓库地址 | 发布信息 | 支持RN版本 |
+| -------- | -------- | --------- |---------|----------|
+| 1.1.1 | @react-native-oh-tpl/react-native-sticky-parallax-header | [Github](https://github.com/react-native-oh-library/react-native-sticky-parallax-header)| [GitHub Releases](https://github.com/react-native-oh-library/react-native-sticky-parallax-header/releases) | 0.72 |
+| 1.2.0 | @react-native-ohos/react-native-sticky-parallax-header | [Github ](https://github.com/react-native-oh-library/react-native-sticky-parallax-header)|[GitHub Releases](https://github.com/react-native-oh-library/react-native-sticky-parallax-header/releases) | 0.77 |
+
## 安装与使用
-请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/react-native-sticky-parallax-header Releases](https://github.com/react-native-oh-library/react-native-sticky-parallax-header/releases)。对于未发布到npm的旧版本,请参考[安装指南](/zh-cn/tgz-usage.md)安装tgz包。
+请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/react-native-sticky-parallax-header Releases](https://github.com/react-native-oh-library/react-native-sticky-parallax-header/releases)。
+
进入到工程目录并输入以下命令:
@@ -27,13 +33,21 @@
#### **npm**
```bash
+# 0.72
npm install @react-native-oh-tpl/react-native-sticky-parallax-header
+
+# 0.77
+npm install @react-native-ohos/react-native-sticky-parallax-header
```
#### **yarn**
```bash
-yarn add @react-native-oh-tpl/react-native-sticky-parallax-header
+# 0.72
+yarn install @react-native-oh-tpl/react-native-sticky-parallax-header
+
+# 0.77
+yarn install @react-native-ohos/react-native-sticky-parallax-header
```
@@ -155,7 +169,10 @@ const TabbedHeaderPagerExample: React.FC = () => {
要使用此库,需要使用正确的 React-Native 和 RNOH 版本。另外,还需要使用配套的 DevEco Studio 和 手机 ROM。
-请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/react-native-sticky-parallax-header Releases](https://github.com/react-native-oh-library/react-native-sticky-parallax-header/releases)。对于未发布到npm的旧版本,请参考[安装指南](/zh-cn/tgz-usage.md)安装tgz包。
+请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/react-native-sticky-parallax-header Releases](https://github.com/react-native-oh-library/react-native-sticky-parallax-header/releases)。
+
+1. RNOH: 0.72.27; SDK: HarmonyOS-Next-DB1 5.0.0.29(SP1); IDE: DevEco Studio 5.0.3.403; ROM: 3.0.0.25;
+2. RNOH: 0.77.1;SDK:HarmonyOS 5.1.1.208 (API Version 19 Release) ;IDE:DevEco Studio:5.1.1.830; ROM: HarmonyOS 6.0.0.112 SP12;
## Headers
diff --git a/zh-cn/react-native-text-gradient.md b/zh-cn/react-native-text-gradient.md
index e5cfb7c946d98bbb2bf83bd23efbceaddb372f98..7cff4c4c181595e8f1effea4adea29c3690d4778 100644
--- a/zh-cn/react-native-text-gradient.md
+++ b/zh-cn/react-native-text-gradient.md
@@ -14,16 +14,15 @@
> [!TIP] [Github 地址](https://github.com/react-native-oh-library/react-native-text-gradient)
+| 三方库版本 | 包 名 | 仓库地址 | 发布信息 | 支持RN版本 |
+| -------- | -------- | --------- |---------|----------|
+| 0.1.7 | @react-native-oh-tpl/react-native-text-gradient |[GitHub ](https://github.com/react-native-oh-library/react-native-text-gradient)| [GitHub Release ](https://github.com/react-native-oh-library/react-native-text-gradient/releases)| 0.72 |
+| 0.2.0 | @react-native-ohos/react-native-text-gradient | [GitCode](https://gitcode.com/openharmony-sig/rntpc_react-native-text-gradient) | [GitCode Release](https://gitcode.com/openharmony-sig/rntpc_react-native-text-gradient/releases)| 0.77 |
## 安装与使用
请到三方库的 Releases 发布地址查看配套的版本信息:
-| 三方库版本 | 发布信息 | 支持RN版本 |
-| ---------- | ------------------------------------------------------------ | ---------- |
-| 0.1.7-0.0.4 | [@react-native-oh-tpl/react-native-text-gradient Releases](https://github.com/react-native-oh-library/react-native-text-gradient/releases) | 0.72 |
-| 0.2.0 | [@react-native-ohos/react-native-text-gradient Releases]() | 0.77 |
-
进入到工程目录并输入以下命令:
diff --git a/zh-cn/victory-native-xl.md b/zh-cn/victory-native-xl.md
index 49abaf365bd5565e94146df06f165eebf301f1b1..2ad9996f1d3d931579233ed519eacf363f6c24eb 100644
--- a/zh-cn/victory-native-xl.md
+++ b/zh-cn/victory-native-xl.md
@@ -15,22 +15,38 @@
> [!TIP] [Github 地址](https://github.com/react-native-oh-library/victory-native-xl)
+| 三方库版本 | 包 名 | 仓库地址 | 发布信息 | 支持RN版本 |
+| -------- | -------- | --------- |---------|----------|
+| 41.1.0 | @react-native-oh-tpl/victory-native-xl | [Github](https://github.com/react-native-oh-library/victory-native-xl)| [Github Releases](https://github.com/react-native-oh-library/victory-native-xl/releases) | 0.72 |
+| 41.17.5 | @react-native-ohos/victory-native-xl | [Github](https://github.com/react-native-oh-library/victory-native-xl)| [Github Releases](https://github.com/react-native-oh-library/victory-native-xl/releases) | 0.77 |
+
+
## 安装与使用
-请到三方库的 Releases 发布地址查看配套的版本信息:[@react-native-oh-tpl/victory-native-xl Releases](https://github.com/react-native-oh-library/victory-native-xl/releases) 。对于未发布到npm的旧版本,请参考[安装指南](/zh-cn/tgz-usage.md)安装tgz包。
+请到三方库的 Releases 发布地址查看配套的版本信息:
+
+对于未发布到npm的旧版本,请参考[安装指南](/zh-cn/tgz-usage.md)安装tgz包。
进入到工程目录并输入以下命令:
#### **npm**
```bash
+# V41.1.0
npm install @react-native-oh-tpl/victory-native-xl
+
+# V41.17.5
+npm install @react-native-ohos/victory-native-xl
```
#### **yarn**
```bash
+# V41.1.0
yarn add @react-native-oh-tpl/victory-native-xl
+
+# V41.17.5
+yarn add @react-native-ohos/victory-native-xl
```
下面的代码展示了这个库的基本使用场景:
@@ -95,7 +111,10 @@ export default function LineChartExample() {
要使用此库,需要使用正确的 React-Native 和 RNOH 版本。另外,还需要使用配套的 DevEco Studio 和 手机 ROM。
-请到三方库相应的 Releases 发布地址查看 Release 配套的版本信息:[@react-native-oh-tpl/victory-native-xl Releases](https://github.com/react-native-oh-library/victory-native-xl/releases)
+请到三方库相应的 Releases 发布地址查看 Release 配套的版本信息:
+
+1. RNOH: 0.72.27; SDK: HarmonyOS-Next-DB1 5.0.0.29(SP1); IDE: DevEco Studio 5.0.3.403; ROM: 3.0.0.25;
+2. RNOH: 0.77.1;SDK:HarmonyOS 5.1.1.208 (API Version 19 Release) ;IDE:DevEco Studio:5.1.1.830; ROM: HarmonyOS 6.0.0.112 SP12;
## 属性
@@ -107,119 +126,130 @@ export default function LineChartExample() {
### Cartesian Chart
-| Name | Description | Type | Required | Platform | HarmonyOS Support |
-| ---- | ----------- | ---- | -------- | -------- | ------------------ |
-| data | An array of objects to be used as data points for the chart | array[] | yes | all | yes
-| xKey | A string value indicating the key of each data[number] object to be used on the independent (x) axis for charting. E.g. "day" if you want to use the "day" field of the data points for the x-axis | string | yes | all | yes
-| yKeys | A string[] array of string indicating the keys of each data[number] object to be used on the dependent (y) axis for charting. E.g. yKeys={["lowTmp", "highTmp"]} if you want to chart both high and low temperatures on the y-axis and those values have keys of lowTmp and highTmp respectively | string[] | yes | all | yes
-| children | The children prop is a render function whose sole argument is an object that exposes transformed data for you to use in your drawing operations. For example, the children render function's argument has a points field that exposes a version of your input data that's transformed to be plotted on the Canvas (see the Example section above for an example of this)| function | yes | all | yes
-| padding | A number or an object of shape { left?: number; right?: number; top?: number; bottom?: number; } that specifies that padding between the outer bounds of the Skia canvas and where the charting bounds will occur | number | no | all | yes
-| domain | An object of shape { x?: [number] \| [number, number]; y?: [number] \| [number, number] } that can be specified to control the upper and lower bounds of each axis. It defaults to the min and max of each range respectively | object | no | all | yes
-| domainPadding | A number or an object of shape { left?: number; right?: number; top?: number; bottom?: number; } that specifies that padding between the outer bounds of the charting area (e.g. where the axes lie) and where chart elements will be plotted | object | no | all | yes
-| axisOptions | The axisOptions is an optional prop allows you to configure the axes and grid of the chart. If it is not present then the chart will not render any axes or grid | object | no | all | yes
-| chartPressState | The chartPressState prop allows you to pass in Reanimated SharedValues that will be used to track the user's "press" gesture on the chart. This is generally used for creating some sort of tooltip/active value indicator. See the Chart Gestures page for more in-depth information on how to use this prop | object | no | all | yes
-| renderOutside | The renderOutside prop is identical to the children prop in form, but it will render elements at the root of the Skia canvas (not inside of a clipping group). This allows you to render elements outside of the bounds of any axes that you have configured | object | no | all | yes
-| onChartBoundsChange | The onChartBoundsChange prop is a function of the shape onChartBoundsChange?: (bounds: ChartBounds) => void; that exposes the chart bounds, useful if you need access to the chart's bounds for your own custom drawing purposes | function | no | all | yes
-| gestureLongPressDelay | The gestureLongPressDelay prop allows you to set the delay in milliseconds before the pan gesture is activated. Defaults to 100 | number | no | all | yes
-
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| --------------------------------------- | ------------------------------------------------------------ | -------- | -------- | -------- | ----------------- |
+| data | 用作图表数据点的数组 | array[] | yes | all | yes |
+| xKey | 一个string[]数组字符串表示的每个数据(数量)对象的键使用依赖(x)轴的图表 | string | yes | all | yes |
+| yKeys | 一个string[]数组字符串表示的每个数据(数量)对象的键使用依赖(y)轴的图表 | string[] | yes | all | yes |
+| children | children属性是一个渲染函数,它的唯一参数是一个对象,该对象暴露了转换后的数据,供你在绘图操作中使用) | function | yes | all | yes |
+| padding | 它指定Skia画布的外部边界和绘图边界将发生的位置之间的填充 | number | no | all | yes |
+| domain | 可以指定控制每个轴的上限和下限。它的默认值分别是每个范围的最小值和最大值 | object | no | all | yes |
+| domainPadding | 指定绘图区域的外部边界(例如,轴所在的位置)和绘制图表元素的位置之间的填充 | object | no | all | yes |
+| axisOptions | axisOptions是一个可选的属性,允许您配置图表的轴和网格。如果它不存在,那么图表将不会渲染任何轴或网格 | object | no | all | yes |
+| chartPressState | chartPressState属性允许你传入重新激活的SharedValues,它将用于跟踪图表上用户的“按下”手势。这通常是用来创建某种工具提示/活跃值指标。更深入的信息,请参阅图表手势页面如何使用这个属性 | object | no | all | yes |
+| renderOutside | renderOutside属性与form中的children属性相同,但它将渲染Skia画布的根元素(而不是在裁剪组内)。这允许你在已配置的任何坐标轴的边界之外渲染元素 | object | no | all | yes |
+| onChartBoundsChange | onChartBoundsChange属性是方法onChartBoundsChange?: (bounds: ChartBounds) => void;这将显示图表的边界,如果您需要为自己的自定义绘图目的访问图表的边界,这将非常有用 | function | no | all | yes |
+| gestureLongPressDelay | gestureLongPressDelay支持允许您设置的延迟毫秒平移手势之前激活。默认为100 | number | no | all | yes |
+| viewport41.17.5+ | 控制图表的可见范围。与domain设置数据的绝对边界不同,viewport确定图表窗口中当前可见的数据部分。 | object | no | all | yes |
+| xAxis41.17.5+ | X轴是一个可选的属性,允许你配置图表的X轴。如果它不存在,那么图表将不会渲染任何X轴。 | object | no | all | yes |
+| yAxis41.17.5+ | yAxis是一个可选的属性,允许你配置图表的Y轴。如果它不存在,那么图表将不会渲染任何y轴。要渲染多个Y轴,需要向数组中传入多个Y轴对象。| object | no | all | yes |
+| frame41.17.5+ | frame是一个可选的prop,允许你配置图表的帧数据。如果它不存在,那么图表将不会渲染任何帧。 | object | no | all | yes |
+| chartPressConfig41.17.5+ | chartPressConfig支持允许您配置平移手势处理程序用于图表交互。 | object | no | all | yes |
+| transformState41.17.5+ | transformState支持允许您通过允许平移和缩放变换状态对象交互图。 | object | no | all | yes |
+| transformConfig41.17.5+ | 一个可选的配置对象当transformState提供定制转换行为 | object | no | all | yes |
+| customGestures41.17.5+ | customgesture属性允许你提供自定义手势处理程序,它将与默认的图表按下手势一起工作(或代替)。它从react-native手势处理程序接受一个composdgesture。 | object | no | all | yes |
+| actionsRef41.17.5+ | actionsRef属性允许你程序化地访问某些图表动作。它接受一个ref对象,该对象将用控制图表行为的方法填充。 | object | no | all | yes |
+| onScaleChange41.17.5+ | 一个回调函数,当图表的刻度发生变化时,由于数据更新或缩放/平移转换,该函数将被调用。该函数接收两个参数:·xScale:当前x轴刻度(d3线性刻度)·yScale:当前y轴刻度(d3线性刻度)。| function | no | all | yes |
+| gestureHandlerConfig41.17.5+ | gestureHandlerConfig属性允许你配置底层的React Native手势处理程序实例。这是用于微调手势交互,比如启用/禁用web平台上的上下文菜单或调整触摸行为。 | object | no | web | no |
### Line Chart
-| Name | Description | Type | Required | Platform | HarmonyOS Support |
-| ---- | ----------- | ---- | -------- | -------- | ------------------ |
-| points | A PointsArray array that comes from a field of the points object exposed the children render function of CartesianChart, as illustrated in the example above | array[] | no | all | yes
-| animate | The animate prop takes a PathAnimationConfig object and will animate the path when the points changes | object | no | all | yes
-| curveType | A CurveType value that indicates the type of curve should be drawn (e.g. linear or natural) | string | no | all | yes
-| connectMissingData | The connectMissingData: boolean value that indicates whether missing data should be interpolated for the resulting Path. If set to true, the output will be a single, connected line chart path (even if there are missing data values). If set to false, if there is missing data values – the path will consist of multiple disconnected "parts"| boolean | no | all | yes
-| children | A children pass-thru that will be rendered inside of the Skia Path element, useful if you'd like to make e.g. a gradient path | object | no | all | yes
-| strokeWidth| Set the width of the line | number| no | all | yes
-| color| Set the color of the line | string| no | all | yes
-
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------------------ | ------------------------------------------------------------ | ------- | -------- | -------- | ----------------- |
+| points | 来自points对象字段的PointsArray数组暴露给CartesianChart的子渲染函数,如上面的示例所示 | array[] | no | all | yes |
+| animate | animate prop接受一个PathAnimationConfig对象,并在点发生变化时对路径进行动画 | object | no | all | yes |
+| curveType | 一个CurveType值,表示应该绘制的曲线类型 (例如: linear or natural) | string | no | all | yes |
+| connectMissingData | connectMissingData:布尔值,用于显示缺失的数据应该插值生成的路径。如果设置为true,输出将是单个连接的折线图路径(即使缺少数据值)。如果设置为false,如果缺少数据值-路径将由多个断开连接的“部分”组成 | boolean | no | all | yes |
+| children | children属性是Skia Path元素内部渲染的子通道,用于渐变路径| object | no | all | yes |
+| strokeWidth | 设置线条的宽度 | number | no | all | yes |
+| color | 设置线条的颜色 | string | no | all | yes |
### Area Chart
-| Name | Description | Type | Required | Platform | HarmonyOS Support |
-| ---- | ----------- | ---- | -------- | -------- | ------------------ |
-| points | A PointsArray array that comes from a field of the points object exposed the children render function of CartesianChart, as illustrated in the example above | array[] | no | all | yes
-| y0 | A number that indicates where the "bottom" of the area path should run. This number should be in canvas coordinates | number | no | all | yes
-| animate | The animate prop takes a PathAnimationConfig object and will animate the path when the points changes | object | no | all | yes
-| curveType | A CurveType value that indicates the type of curve should be drawn (e.g. linear or natural) | string | no | all | yes
-| connectMissingData | The connectMissingData: boolean value that indicates whether missing data should be interpolated for the resulting Path. If set to true, the output will be a single, connected area chart path (even if there are missing data values). If set to false, if there is missing data values – the path will consist of multiple disconnected "parts" | boolean | no | all | yes
-| children | A children pass-thru that will be rendered inside of the Skia Path element, useful if you'd like to make e.g. a gradient path | object | no | all | yes
-| color| Set the color of the area | string| no | all | yes
-
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------------------ | ------------------------------------------------------------ | ------- | -------- | -------- | ----------------- |
+| points | 来自points对象字段的PointsArray数组暴露给CartesianChart的子渲染函数,如上面的示例所示 | array[] | no | all | yes |
+| y0 | 指示区域路径“底部”应该运行的位置的数字。这个数字是画布坐标 | number | no | all | yes |
+| animate | animate prop接受一个PathAnimationConfig对象,并在点发生变化时对路径进行动画 | object | no | all | yes |
+| curveType | 一个CurveType值,表示应该绘制的曲线类型(例如线性或自然)。 | string | no | all | yes |
+| connectMissingData | 一个将在Skia Path元素内部渲染的子通道,如果你想制作一个渐变路径,这很有用| boolean | no | all | yes |
+| children | 一个将在Skia Path元素内部渲染的子通道,如果你想制作一个渐变路径,这很有用 | object | no | all | yes |
+| color | 设置区域的颜色 | string | no | all | yes |
### Bar Chart
-| Name | Description | Type | Required | Platform | HarmonyOS Support |
-| ---- | ----------- | ---- | -------- | -------- | ------------------ |
-| points | A PointsArray array that comes from a field of the points object exposed the children render function of CartesianChart, as illustrated in the example above | array[] | no | all | yes
-| chartBounds | A ChartBounds object needed to appropriately draw the bars. This generally comes from the chartBounds render argument of CartesianChart | object | no | all | yes
-| innerPadding | An optional number between 0 and 1 that represents what fraction of the horizontal space between the first and last bars should be "white space". Defaults to 0.2. Use 0 for no gap between bars, and values closer to 1 to make bars increasingly narrow | number | no | all | yes
-| animate | The animate prop takes a PathAnimationConfig object and will animate the path when the points change | object | no | all | yes
-| roundedCorners | The roundedCorners prop allows you to customize the roundedness of each corner of the Bar component. It's an object type that defines the radii for the top-left, top-right, bottom-right, and bottom-left corners | object | no | all | yes
-| barWidth | The barWidth prop takes a number and sets the width of the bar to that number. If not provided, the default is determined by the chartBounds and number of data points. Takes precendence over the barCount prop. Use this for the most fine grained control of bar width | number | no | all | yes
-| barCount | The barCount prop takes a number and sets the width of the bar as if there X data points. If not provided, the default is determined by the chartBounds and number of data points. Useful for getting a fixed bar width regardless of the number of data points. Use this for a more general control of bar width | number | no | all | yes
-| children | A children pass-thru that will be rendered inside of the Skia Path element, useful if you'd like to make e.g. a gradient path | object | no | all | yes
-| color| Set the color of the bar| string| no | all | yes
-
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------------------------- | ------------------------------------------------------------ | ------- | -------- | -------- | ----------------- |
+| points | 来自points对象的字段的PointsArray数组暴露了CartesianChart的子呈现函数,如上面的示例所示 | array[] | no | all | yes |
+| chartBounds | 一个用于正确绘制条形图的ChartBounds对象。这通常来自于CartesianChart的chartBounds渲染参数 | object | no | all | yes |
+| innerPadding | 一个介于0和1之间的可选数字,表示第一个和最后一个条之间的水平空间应该是“空白”的百分比。默认为0.2。使用0表示条形条之间没有间隙,使用接近1的值表示条形条越来越窄 | number | no | all | yes |
+| animate | animate prop接受一个PathAnimationConfig对象,并在点改变时对路径进行动画 | object | no | all | yes |
+| roundedCorners | roundedCorners属性允许你自定义BarGroup的每个角的角度。Bar组件。它是一个对象类型,定义了左上的半径,右上图右下角,左下侧的角落 | object | no | all | yes |
+| barWidth | barWidth prop接受一个数字,并将表的宽度设置为该数字。如果未提供,则默认值由该组条的总可用宽度、组中的条数以及组中条之间的填充量的组合决定。优先于barCount prop。将此用于最精细的条形表宽度控制 | no | all | yes |
+| barCount | barCount prop接受一个数字,并将条形的宽度设置为X个数据点。如果没有提供,则默认值由chartBounds和数据点数决定。无论数据点的数量如何,都可以获得固定的条宽度。将此用于更一般的条宽度控制 | number | no | all | yes |
+| children | 一个在Skia路径元素中渲染的子通道,如果你想做一个渐变路径,它会很有用 | object | no | all | yes |
+| color | 设置表的颜色 | string | no | all | yes |
+| labels41.17.5+ | labels属性允许您启用和自定义Bar组件的数据标签。数据标签文本是与Bar组件关联的y轴值。 | object | no | all | yes |
### BarGroup Chart
-| Name | Description | Type | Required | Platform | HarmonyOS Support |
-| ---- | ----------- | ---- | -------- | -------- | ------------------ |
-| chartBounds | A ChartBounds object needed to appropriately draw the bars. This generally comes from the chartBounds render argument of CartesianChart | object | no | all | yes
-| betweenGroupPadding | An optional number between 0 and 1 that represents what fraction of the horizontal space between the first and last bar groups should be "white space". Defaults to 0.2. Use 0 for no gap between groups, and values closer to 1 to make bars increasingly narrow | number | no | all | yes
-| withinGroupPadding | An optional number between 0 and 1 that represents what fraction of the horizontal space between the first and last bars within a group should be "white space". Defaults to 0.2. Use 0 for no gap between bars within a group, and values closer to 1 to make bars increasingly narrow | number | no | all | yes
-| barWidth | The barWidth prop takes a number and sets the width of the bar to that number. If not provided, the default is determined by a combination of the total available width for the group of bars, the number of bars in the group, and the padding between the bars within the group. Takes precedence over barCount prop. Use this for the most fine grained control of bar width | number | no | all | yes
-| barCount | The barCount prop takes a number and sets the width of the bar as if there X data points. If not provided, the default is determined by the chartBounds and number of data points. Useful for getting a fixed bar width regardless of the number of data points. Use this for a more general control of bar width | number | no | all | yes
-| onBarSizeChange | That alerts the consumer when the size of the bars/groups changes, useful for if you're building a custom tooltip and need to know the size of the groups/bars | function | no | all | yes
-| roundedCorners | The roundedCorners prop allows you to customize the roundedness of each corner of a BarGroup.Bar component. It's an object type that defines the radii for the top-left, top-right, bottom-right, and bottom-left corners | object | no | all | yes
-| children | An array of BarGroup.Bar elements (see below) that represent the bars to add to the bar group | object | no | all | yes
-| color| Set the color of the bar | string| no | all | yes
-
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ------------------- | ------------------------------------------------------------ | -------- | -------- | -------- | ----------------- |
+| chartBounds | 一个用于正确绘制条形图的ChartBounds对象。这通常来自于CartesianChart的chartBounds渲染参数 | object | no | all | yes |
+| betweenGroupPadding | 一个介于0和1之间的可选数字,表示第一个和最后一个条组之间的水平空间应该是“空白”的百分比。默认为0.2。使用0表示组之间没有间隙,使用接近1的值表示条形图越来越窄 | number | no | all | yes |
+| withinGroupPadding | 一个介于0到1之间的可选数字,表示组中第一个条和最后一个条之间的水平空间应该是“空白”的比例。默认为0.2。使用0表示组内条之间没有间隙,使用接近1的值表示条越来越窄 | number | no | all | yes |
+| barWidth | barWidth prop接受一个数字,并将表的宽度设置为该数字。如果未提供,则默认值由该组条的总可用宽度、组中的条数以及组中条之间的填充量的组合决定。优先于barCount prop。将此用于最精细的条形表宽度控制 | number | no | all | yes |
+| barCount | barCount prop接受一个数字,并设置条形图的宽度,就好像有X个数据点一样。如果没有提供,默认值由chartBounds和数据点的数量决定。无论数据点的数量如何,都可以获得固定的条形宽度。用它来控制表宽 | number | no | all | yes |
+| onBarSizeChange | 当条形/表的大小发生变化时,它会提醒用户,这对于构建自定义工具提示并需要知道条形/表的大小很有用 | function | no | all | yes |
+| roundedCorners | roundedCorners属性允许你自定义BarGroup的每个角的角度。Bar组件。它是一个对象类型,定义了左上的半径,右上图右下角,左下侧的角落 | object | no | all | yes |
+| children | BarGroup的数组。Bar元素(见下文),表示要添加到Bar组中的Bar | object | no | all | yes |
+| color | 设置表的颜色 | string | no | all | yes |
### Scatter Chart
-| Name | Description | Type | Required | Platform | HarmonyOS Support |
-| ---- | ----------- | ---- | -------- | -------- | ------------------ |
-| points | TA PointsArray array that comes from a field of the points object exposed the children render function of CartesianChart, as illustrated in the example above | array[] | no | all | yes
-| radius | radius of the circle, half the width of the square | number | no | all | yes
-| shape | One of the following ScatterShape values that determines the shape of each point to be drawn | ScatterShape | no | all | yes
-| animate | The animate prop takes a PathAnimationConfig object and will animate the path when the points change | object | no | all | yes
-| children | An array of BarGroup.Bar elements (see below) that represent the bars to add to the bar group | object | no | all | yes
-| style| set style stroke or fill | string| no | all | yes
-| strokeWidth| Set the width of the line | number| no | all | yes
-| color| Set the color of the bar| string| no | all | yes
+| Name | Description | Type | Required | Platform | HarmonyOS Support |
+| ----------- | ------------------------------------------------------------ | ------------ | -------- | -------- | ----------------- |
+| points | PointsArray数组来自points对象的一个字段,它暴露给CartesianChart的子渲染函数,如上面的示例所示 | array[] | no | all | yes |
+| radius | 圆的半径,正方形宽度的一半 | number | no | all | yes |
+| shape | 下列散点形状值之一,用于确定要绘制的每个点的形状 | ScatterShape | no | all | yes |
+| animate | animate属性的参数是一个PathAnimationConfig对象,它会在点发生变化时为路径添加动画 | object | no | all | yes |
+| children | BarGroup的数组。Bar元素(见下文),表示要添加到Bar组中的Bar | object | no | all | yes |
+| style | 设置样式描边或填充 | string | no | all | yes |
+| strokeWidth | 设置线条的宽度 | number | no | all | yes |
+| color | 设置表的颜色 | string | no | all | yes |
### Polar Chart
-| Name | Description | Type | Required | Platform | HarmonyOS Support |
-| ---- | ----------- | ---- | -------- | -------- | ------------------ |
-| data | An array of objects to be used as data points for the chart | array[] | yes | all | yes
-| labelKey | A string value indicating the key of each data[number] object to be used. Currently only used on the legend part of the chart. In the future we may add support for a variety of labels within the chart | string | yes | all | yes
-| valueKey | A string value indicating the key of each data[number] object to be used to draw a slice of the Pie | string | yes | all | yes
-| colorKey | A string value indicating the key of each data[number] object to be used to draw a slice of the Pie | string | yes | all | yes
-| children | The only supported children of a PolarChart is currently a Pie.Chart See the Pie Chart for more details | object | no | all | yes
-| containerStyle | A StyleProp