Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
Labels disappear
posted

Using example from the link below

http://es.infragistics.com/community/blogs/torrey-betts/archive/2013/04/25/custom-axis-labels-on-ios-charts-objective-c-and-c.aspx

If I add the igViewController in the example inside another controller, the labels no longer appear. Any ideas?

SecondUIViewController code:
...
- (void)viewDidLoad
{
[super viewDidLoad];

igViewController *controller = [[igViewController alloc]init];

[self.view addSubview:controller.view];

[controller.view setFrame:self.view.frame];
}