I am totally new to HighCharts and I referred example http://blog.li-labs.com/developing-ios-apps-with-custom-charting/ and tried same, but on iPad simulator I am getting a blan
Useful code for calling .html in UIWebView.
-(void)viewDidLoad
{
NSString *pathOfFile = [[NSBundle mainBundle] pathForResource:@"chart" ofType:@"html"];
NSString *htmlText =[NSString stringWithContentsOfFile:pathOfFile encoding:NSUTF8StringEncoding error:nil];
NSURL *baseURL = [NSURL fileURLWithPath:pathOfFile];
[UIWebView loadHTMLString: htmlText baseURL:baseURL];
}