On device, there is an unwanted border line on the SCIChartSurface. Please refer to the screenshot.
I tried removing this by setting the border width and setting it’s colour as white as below
self.surface.view.layer.borderColor = [[UIColor whiteColor]CGColor];
self.surface.view.layer.borderWidth = 2.0f;
However, this does not set the border of the SCIChartSurface.
How do I remove this unwanted border line?
- Chui asked 8 years ago
- last edited 8 years ago
- You must login to post comments
Good day
We don’t have such line by default. I’ve just checked that on 1.2 version.
Please provide some more information on your SCIChartSurface setup, axes setup and annotations you are using.
Some small project to reproduce such issue would be really helpful
Best regards
Andrii SciChart iOS Developer
- Andrii Poliuk answered 8 years ago
-
Hi Andrii, In scichart 2.0 version, I reproduced the same problem. Unwanted border lines appeared. You can try to change the size of the “surface” in the “SciChart_iOS_v2” Demo to be not the same size as the screen, and then change the background color to white, and you can see the unwanted Border line. At present, this kind of border only appears on devices before iPhoneX. Is there any good way to remove this unwanted border line?
- You must login to post comments
Hi Chui,
Our team has created an example showing how to style various elements of the iOS SCIChartSurface:
iOS Chart Custom Styling Example
This shows how to style the surface.renderableSeriesAreaBorder by setting a pen with this line of code:
// Obj C
surface.renderableSeriesAreaBorder = [[SCISolidPenStyle alloc] initWithColor:UIColor.darkGrayColor withThickness:1];
// Swift
surface.renderableSeriesAreaBorder = SCISolidPenStyle(color: .darkGray, withThickness: 1)
Does it answer your questions? Is there anything else you would like to see added to this example?
Best regards,
Andrew
- Andrew Burnett-Thompson answered 7 years ago
- You must login to post comments
Please login first to submit.