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
onevcat
2014-12-25 10:35:49 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b782daf2432dfb5cfd6a46fe2c63b33f721dc650
b782daf2
1 parent
815f5f98
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 @
b782daf
...
...
@@ -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