Skip to content

Commit 8a921ad

Browse files
authored
wiki link
1 parent 29e24bc commit 8a921ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ implementation 'com.jjoe64:graphview:4.2.2'
5151
```
5252

5353
2) Add view to layout:
54-
```
54+
```xml
5555
<com.jjoe64.graphview.GraphView
5656
android:layout_width="match_parent"
5757
android:layout_height="200dip"
5858
android:id="@+id/graph" />
5959
```
6060

6161
3) Add some data:
62-
```
62+
```java
6363
GraphView graph = (GraphView) findViewById(R.id.graph);
6464
LineGraphSeries<DataPoint> series = new LineGraphSeries<DataPoint>(new DataPoint[] {
6565
new DataPoint(0, 1),
@@ -78,9 +78,9 @@ graph.addSeries(series);
7878

7979
## More examples and documentation
8080

81-
<a href="http://android-graphview.org">Get started at project homepage</a>
81+
<a href="https://github.com/jjoe64/GraphView/wiki">Get started at project wiki homepage</a>
8282

8383
To show you how to integrate the library into an existing project see the GraphView-Demos project!
8484
See GraphView-Demos for examples.
8585
<a href="https://github.com/jjoe64/GraphView-Demos">https://github.com/jjoe64/GraphView-Demos<br/>
86-
<a href="http://android-graphview.org">View GraphView page http://android-graphview.org</a>
86+
<a href="https://github.com/jjoe64/GraphView/wiki">View GraphView wiki page https://github.com/jjoe64/GraphView/wiki</a>

0 commit comments

Comments
 (0)