Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
PNChart
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
kevinzhow
2013-12-12 09:19:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
185195718a8e550c5f45c79054be070806e79ac6
18519571
1 parent
eed7a94f
Update readme
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
README.md
README.md
View file @
1851957
...
...
@@ -52,7 +52,6 @@ You will need LLVM 3.0 or later in order to build PNChart.
//For BarChart
PNBarChart * barChart = [[PNBarChart alloc] initWithFrame:CGRectMake(0, 135.0, SCREEN_WIDTH, 200.0)];
barChart.type = PNBarType;
[barChart setXLabels:@[@"SEP 1",@"SEP 2",@"SEP 3",@"SEP 4",@"SEP 5"]];
[barChart setYValues:@[@1, @10, @2, @6, @3]];
[barChart strokeChart];
...
...
@@ -68,7 +67,6 @@ You will need LLVM 3.0 or later in order to build PNChart.
//For CircleChart
PNCircleChart
*
circleChart =
[
[PNCircleChart alloc
]
initWithFrame:CGRectMake(0, 135.0, SCREEN_WIDTH, 200.0)];
circleChart.type = PNCircleType;
circleChart.total =
[
NSNumber numberWithInt:100
]
;
circleChart.current =
[
NSNumber numberWithInt:60
]
;
[
circleChart strokeChart
]
;
...
...
Please
register
or
login
to post a comment