I have a simple line graph which allows the user to view a section of the graph area by scrolling. Everything works fine when the x and y axisConstraints were set and using default labeling policy.
After I set the CPTAxisLabelingPolicyNone and use my custom labels, they show inside the padding area of the plot area frame when/after scrolling. How to make it like the default setting, where the labels are hidden in that area?
Thanks
This is a known issue with Core Plot. See issue 104.
Until this issue is fixed, you can use a plot space delegate to receive notifications when the graph scrolls. Check the new plot range and hide or remove labels that fall outside the range.