This commit is contained in:
Philipp Jahoda 2014-05-28 23:09:47 +02:00
commit 245648f3ff
2 changed files with 21 additions and 4 deletions

View file

@ -154,7 +154,7 @@ public class PieChartActivity extends Activity implements OnSeekBarChangeListene
for (int i = 0; i < mSeekBarX.getProgress(); i++)
xVals.add("Text" + (i + 1));
DataSet set1 = new DataSet(yVals1, 0);
DataSet set2 = new DataSet(yVals2, 1);

View file

@ -1,4 +1,4 @@
MPChart
MPAndroidChart
=======
A simple charting library for Android, supporting line- bar- and piecharts, scaling, dragging and selecting.
@ -17,9 +17,10 @@ Features
- Fully customizeable (paints, typefaces, legends, colors, background, gestures, ...)
**Chart types:**
- **LineChart**
- **LineChart (single line)**
![alt tag](https://raw.github.com/PhilJay/MPChart/master/screenshots/linechart.png)
- **LineChart (multi line / experimental branch)**
![alt tag](https://raw.github.com/PhilJay/MPChart/experimental/screenshots/linechart_multiline.png)
- **BarChart2D**
@ -40,3 +41,19 @@ Usage
Example usage code coming soon.
Rely on the **"MPChartExample"** folder for now and check out the examples in that project.
License
=======
Copyright [2014] [Philipp Jahoda]
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.
See the License for the specific language governing permissions and
limitations under the License.