Closed GoogleCodeExporter closed 8 years ago
Can you reproduce this behavior in one of the example apps? I pasted your code
into one of the samples in the Plot Gallery and it worked as expected.
Make sure you're not inadvertently resetting the line style elsewhere in the
app.
Original comment by eskr...@mac.com
on 2 Mar 2013 at 2:11
[deleted comment]
[deleted comment]
It seems that the problem of missing axis lines only occurs when
graph.plotAreaFrame.borderLineStyle is set to nil.
However, I want to plot only the axis lines, but no border lines around the
plot area.
This seems to impossible when border lines are set to nil.
Please refer to the full source code and screen shot attached.
Thank you!
Original comment by Alexande...@gmail.com
on 2 Mar 2013 at 11:02
Attachments:
Original comment by eskr...@mac.com
on 9 Mar 2013 at 1:30
Upon closer inspection, I determined that Core Plot is working as designed. In
the sample code provided, the axes were being drawn, but they were clipped by
the edges of the plot area frame. Adding padding to the plot area frame fixed
the problem.
graph.plotAreaFrame.paddingLeft = 15;
graph.plotAreaFrame.paddingBottom = 15;
Original comment by eskr...@mac.com
on 18 Mar 2013 at 12:01
Original issue reported on code.google.com by
Alexande...@gmail.com
on 27 Feb 2013 at 7:48Attachments: