From 7ae6f177d5e55408cb4adb7df7f165b4144da686 Mon Sep 17 00:00:00 2001 From: JiangJun <2680104782@qq.com> Date: Wed, 2 Jun 2021 17:17:27 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E5=86=85=E5=AE=B9?= =?UTF-8?q?=E3=80=91:md,source?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.OPENSOURCE | 4 ++-- README.md | 30 ++++++++++++++++-------------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/README.OPENSOURCE b/README.OPENSOURCE index f50b062..66f1f91 100644 --- a/README.OPENSOURCE +++ b/README.OPENSOURCE @@ -3,8 +3,8 @@ "Name": "ikvStockChart", "License": "Apache License", "License File": "LICENSE", - "Version Number": " master ", - "Upstream URL": "https://github.com/wordplat/ikvStockChart ", + "Version Number": "Release版本号 0.1.3.1", + "Upstream URL": "https://github.com/wordplat/ikvStockChart", "Description": "一个适用于Android的简单股票图表库,支持时间线,k线,macd,kdj,rsi,布尔指标和交互式手势操作,包括左右滑动以刷新,缩放,突出显示" } ] \ No newline at end of file diff --git a/README.md b/README.md index 7f90cb2..b29ca4d 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,12 @@ - 支持 fling 滑动 - 支持 MACD、RSI、KDJ、BOLL 四个指标 - 支持自定义的指标显示方式 -- 附带的程序示例有:默认左滑右滑加载、禁用左滑右滑加载、多个指标共同联动显示、在页面中使用、带有下拉刷新的需求中使用、横竖屏切换(自动旋转)、简单分时图 +- 附带的程序示例有:默认左滑右滑加载、禁用左滑右滑加载、多个指标共同联动显示、在 Fragment 中使用、带有下拉刷新的需求中使用、横竖屏切换(自动旋转)、简单分时图 #### 效果演示 -![image](https://images.gitee.com/uploads/images/2021/0524/162114_43843cc3_7918188.gif "images.gif") +![](http://ww1.sinaimg.cn/large/006tNbRwgy1feysmzj8atg30dc0nkdy5.gif) + + #### 安装教程 @@ -27,11 +29,11 @@ ```gradle allprojects { - repositories { - maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' - } - } + repositories { + maven { + url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + } + } } ``` @@ -39,7 +41,7 @@ allprojects { ```gradle dependencies { - implementation('com.gitee.chinasoft_ohos:ikvStockChart:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ikvStockChart:0.0.1-SNAPSHOT') ...... } ``` @@ -69,7 +71,7 @@ XML中添加控件: ##### 代码使用 -```java +```txt final EntrySet entrySet = new EntrySet(); entrySet.addEntry(new Entry(...)); @@ -109,7 +111,7 @@ XML中添加控件: }); ``` -ikvStockChart 支持 66 个属性配置,设置各个线条颜色大小参考 [https://gitee.com/chinasoft2_ohos/ikvStockChart/blob/master/PROPERTY.md](https://gitee.com/chinasoft2_ohos/ikvStockChart/blob/master/PROPERTY.md) +ikvStockChart 支持 66 个属性配置,设置各个线条颜色大小参考 https://github.com/wordplat/ikvStockChart/blob/master/PROPERTY.md ```java @@ -139,13 +141,13 @@ CloudTest代码测试无异常 Copyright (C) 2017 WordPlat Open Source Project https://wordplat.com/InteractiveKLineView/ - - Licensed under the Apache License, Version 2.0 (the "License"); + + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - + http://www.apache.org/licenses/LICENSE-2.0 - + Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- Gitee