Skip to content

Commit

Permalink
Changed v from 1.0.0 to 0.2.0-alpha
Browse files Browse the repository at this point in the history
It really shouldn't be considered complete at all. I should add an adapter
  • Loading branch information
NikShuvalov authored Mar 6, 2018
1 parent 7d0ad0e commit 170884e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ Two libraries to create Line Graph and Pie Chart Views easily.
### Including the library
You can include the dependency using JitPack, directions provided on the page:

https://jitpack.io/#NikShuvalov/Shoe-Olive-Graphs/v1.0.0
https://jitpack.io/#NikShuvalov/Shoe-Olive-Graphs/v0.2.0-alpha

--or--

If you already have the JitPack repository included in your root gradle file:

To include entire library:
```
compile 'com.github.NikShuvalov:Shoe-Olive-Graphs:v1.0.0'
compile 'com.github.NikShuvalov:Shoe-Olive-Graphs:v0.2.0-alpha'
```

To include only Line Graph sub-library:
```
compile 'com.github.NikShuvalov.Shoe-Olive-Graphs:line-graph-view:v1.0.0'
compile 'com.github.NikShuvalov.Shoe-Olive-Graphs:line-graph-view:v0.2.0-alpha'
```

To include only Pie Chart sub-library:
```
compile 'com.github.NikShuvalov.Shoe-Olive-Graphs:pie-chart-view:v1.0.0'
compile 'com.github.NikShuvalov.Shoe-Olive-Graphs:pie-chart-view:v0.2.0-alpha'
```

## Line Graphs
Expand Down

1 comment on commit 170884e

@wildwes357
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The LineGraphView takes a list of Objects with the LineGraphable interface. The xAxis and yAxis value types currently supported only include Integer, Double and Float. The xAxis and yAxis values, as expected, determine where to plot the next point on the linegraph. The LineGraphable needs to be sorted by it's xAxis value to prevent oddities from occuring (Failing to make it sortable will result in the linegraph looking like a pollock painting; while visually interesting, it makes the graph pretty useless).

Please sign in to comment.