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
2015-01-16 22:47:50 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
54e0601930873fcf57cb5aefe8b4fedaa5590da7
54e06019
1 parent
78351dfd
weak delegate
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
PNChart/PNBarChart.h
PNChart/PNLineChart.h
PNChart/PNBarChart.h
View file @
54e0601
...
...
@@ -94,6 +94,6 @@ typedef NSString *(^PNYLabelFormatter)(CGFloat yLabelValue);
/** Controls whether text for x-axis be straight or rotate 45 degree. */
@property
(
nonatomic
)
BOOL
rotateForXAxisText
;
@property
(
nonatomic
,
retain
)
id
<
PNChartDelegate
>
delegate
;
@property
(
nonatomic
,
weak
)
id
<
PNChartDelegate
>
delegate
;
@end
...
...
PNChart/PNLineChart.h
View file @
54e0601
...
...
@@ -17,7 +17,7 @@
*/
-
(
void
)
strokeChart
;
@property
(
nonatomic
,
retain
)
id
<
PNChartDelegate
>
delegate
;
@property
(
nonatomic
,
weak
)
id
<
PNChartDelegate
>
delegate
;
@property
(
nonatomic
)
NSArray
*
xLabels
;
@property
(
nonatomic
)
NSArray
*
yLabels
;
...
...
Please
register
or
login
to post a comment