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
2014-10-26 03:25:49 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a512af93cd26e560d01fd05175d613e90d352652
a512af93
1 parent
c340de10
Fix a bug may crash if x label set number
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
PNChart/PNBarChart.m
PNChart/PNBarChart.m
View file @
a512af9
...
...
@@ -107,7 +107,7 @@
labelAddCount
+=
1
;
if
(
labelAddCount
==
_xLabelSkip
)
{
NSString
*
labelText
=
_xLabels
[
index
];
NSString
*
labelText
=
[
_xLabels
[
index
]
description
];
PNChartLabel
*
label
=
[[
PNChartLabel
alloc
]
initWithFrame
:
CGRectZero
];
label
.
font
=
_labelFont
;
label
.
textColor
=
_labelTextColor
;
...
...
Please
register
or
login
to post a comment