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
Michael Zischka
2015-02-16 11:50:55 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
daac10549892e8ed5330b36d7be339f7968a07c9
daac1054
1 parent
7d7af503
removed obsolete value assignment
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
PNChart/PNScatterChart.m
PNChart/PNScatterChart.m
View file @
daac105
...
...
@@ -276,7 +276,6 @@
}
if
(
_showLabel
)
{
NSString
*
str
;
//drawing x steps vector and putting axis x labels
float
temp
=
_startPointVectorX
.
x
+
(
_vectorX_Steps
/
2
)
;
for
(
int
i
=
0
;
i
<
_axisX_labels
.
count
;
i
++
)
{
...
...
@@ -291,7 +290,6 @@
[
self
.
horizentalLinepathLayer
addObject
:
shapeLayer
];
[
self
.
layer
addSublayer
:
shapeLayer
];
UILabel
*
lb
=
[
_axisX_labels
objectAtIndex
:
i
]
;
str
=
lb
.
text
;
[
self
showXLabel
:
lb
InPosition
:
CGPointMake
(
temp
-
15
,
_startPointVectorX
.
y
+
10
)];
temp
=
temp
+
_vectorX_Steps
;
}
...
...
@@ -309,7 +307,6 @@
[
self
.
verticalLineLayer
addObject
:
shapeLayer
];
[
self
.
layer
addSublayer
:
shapeLayer
];
UILabel
*
lb
=
[
_axisY_labels
objectAtIndex
:
i
];
str
=
lb
.
text
;
[
self
showXLabel
:
lb
InPosition
:
CGPointMake
(
_startPointVectorY
.
x
-
30
,
temp
-
5
)];
temp
=
temp
-
_vectorY_Steps
;
}
...
...
Please
register
or
login
to post a comment