Skip to content

Commit a817157

Browse files
author
jeanboy
committed
update
1 parent 955204f commit a817157

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

README.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,57 @@
11
# Android-LineChart
2+
## 介绍
3+
一个简单的折线,贝塞尔曲线控件,高度可扩展,支持动态显示。
4+
5+
## 效果图
6+
7+
![演示][1] ![演示][2] ![演示][3]
8+
9+
![演示][4] ![演示][5]
10+
11+
## 使用
12+
```XML
13+
<HorizontalScrollView
14+
android:layout_width="match_parent"
15+
android:layout_height="wrap_content"
16+
android:overScrollMode="never"
17+
android:scrollbars="none">
18+
19+
<LinearLayout
20+
android:layout_width="wrap_content"
21+
android:layout_height="wrap_content"
22+
android:orientation="vertical">
23+
24+
<com.jeanboy.linechart.LineChartView
25+
android:id="@+id/line_chart_view"
26+
android:layout_width="wrap_content"
27+
android:layout_height="300dp"/>
28+
</LinearLayout>
29+
30+
</HorizontalScrollView>
31+
```
32+
33+
## 关于我
34+
35+
36+
37+
## License
38+
39+
Copyright 2015 jeanboy
40+
41+
Licensed under the Apache License, Version 2.0 (the "License");
42+
you may not use this file except in compliance with the License.
43+
You may obtain a copy of the License at
44+
45+
http://www.apache.org/licenses/LICENSE-2.0
46+
47+
Unless required by applicable law or agreed to in writing, software
48+
distributed under the License is distributed on an "AS IS" BASIS,
49+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
50+
See the License for the specific language governing permissions and
51+
limitations under the License.
52+
53+
[1]:https://github.com/jeanboydev/Android-LineChart/tree/master/resources/anim.gif
54+
[2]:https://github.com/jeanboydev/Android-LineChart/tree/master/resources/change.gif
55+
[3]:https://github.com/jeanboydev/Android-LineChart/tree/master/resources/operate.gif
56+
[4]:https://github.com/jeanboydev/Android-LineChart/tree/master/resources/Screenshot_20170613-183802.jpg
57+
[5]:https://github.com/jeanboydev/Android-LineChart/tree/master/resources/Screenshot_20170613-183803.jpg

0 commit comments

Comments
 (0)