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
Kevin
2014-12-25 11:25:23 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
6649bca27916c7f144acf7660dd241d6c635a3c0
6649bca2
2 parents
dc7eecf8
b782daf2
Merge pull request #135 from onevcat/fix/readme-method-name
Update method name
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
README.md
README.md
View file @
6649bca
...
...
@@ -88,7 +88,7 @@ PNBarChart * barChart = [[PNBarChart alloc] initWithFrame:CGRectMake(0, 135.0, S
//For Circle Chart
PNCircleChart
*
circleChart =
[
[PNCircleChart alloc
]
initWithFrame:CGRectMake(0, 80.0, SCREEN_WIDTH, 100.0)
andTotal:
[
NSNumber numberWithInt:100
]
andCurrent:
[
NSNumber numberWithInt:60
]
andClockwise
:NO];
PNCircleChart
*
circleChart =
[
[PNCircleChart alloc
]
initWithFrame:CGRectMake(0, 80.0, SCREEN_WIDTH, 100.0)
total:
[
NSNumber numberWithInt:100
]
current:
[
NSNumber numberWithInt:60
]
clockwise:NO shadow
:NO];
circleChart.backgroundColor =
[
UIColor clearColor
]
;
[
circleChart setStrokeColor:PNGreen
]
;
[
circleChart strokeChart
]
;
...
...
Please
register
or
login
to post a comment