File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -51,15 +51,15 @@ implementation 'com.jjoe64:graphview:4.2.2'
51
51
```
52
52
53
53
2 ) Add view to layout:
54
- ```
54
+ ``` xml
55
55
<com .jjoe64.graphview.GraphView
56
56
android : layout_width =" match_parent"
57
57
android : layout_height =" 200dip"
58
58
android : id =" @+id/graph" />
59
59
```
60
60
61
61
3 ) Add some data:
62
- ```
62
+ ``` java
63
63
GraphView graph = (GraphView ) findViewById(R . id. graph);
64
64
LineGraphSeries<DataPoint > series = new LineGraphSeries<DataPoint > (new DataPoint [] {
65
65
new DataPoint (0 , 1 ),
@@ -78,9 +78,9 @@ graph.addSeries(series);
78
78
79
79
## More examples and documentation
80
80
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 >
82
82
83
83
To show you how to integrate the library into an existing project see the GraphView-Demos project!
84
84
See GraphView-Demos for examples.
85
85
<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 >
You can’t perform that action at this time.
0 commit comments