Closed GoogleCodeExporter closed 8 years ago
Original comment by eskr...@mac.com
on 4 Apr 2012 at 11:21
It wasn't a duplicate I think, they were slightly diffrent issues.
This happens always and 421 only when collapsesLayers is YES.
And this happens for labels that are out the visible space initially, while 421
happens for labels that are initially visible.
Original comment by irodrig...@gmail.com
on 5 Apr 2012 at 1:47
I solved this by making the graph's hosting view frame the same size of the
graph, so all labels "thinks" they're visible, then used a UIScrollView to
scroll.
Original comment by irodrig...@gmail.com
on 5 Apr 2012 at 1:49
Unmerged. I didn't notice the difference. Thanks for the heads-up.
Original comment by eskr...@mac.com
on 5 Apr 2012 at 9:14
Core Plot doesn't support the backgroundColor property. The superclass of
CPTTextLayer was changed after the 1.0 release. It is now a subclass of
CPTBorderedLayer which gives it a fill property.
Pull the latest code with Mercurial. Then the label background can be changed
using the following:
((CPTTextLayer *)(newLabel.contentLayer)).fill = [CPTFill
fillWithColor:[CPTColor redColor]];
Original comment by eskr...@mac.com
on 22 Apr 2012 at 10:31
Original issue reported on code.google.com by
irodrig...@gmail.com
on 2 Apr 2012 at 8:32