Hey!
I know im asking allot of questions about Core Plot, im really sorry, but I keep bumping into problems.
This is how far I have gotten:

The Core Plot view is at the top of my ViewController.
The reason why I want it like that is because I want text underneath.
Anyway:
This is what I did to get this far:
In MyProjectViewController.m's view did load method:
Code:
plotView initWithFrame:CGRectMake(0, 0, 320, 200)];
[self.view addSubview:plotView];
[plotView release];
CPTTestAppBarChartController * barChartTopViewController= [[CPTTestAppBarChartController alloc] init];
[barChartTopViewController viewDidLoad];
I implemented the Core Plot view in the Interface builder and linked the plotView variable to the Core Plot View in the Interface Builder.
The code above makes the Core Plot view set its size so I can have it at the top of the main view controller.
And the [barChartTopViewController viewDidLoad] is to activate the code within the viewDidLoad method in the barChartTopViewController.
Here is the barChartTopViewControllers .ms code:
[Objective C] #import "barChartTopViewController.h" @implementation barChartTopViewController - Pastebin.com
Thats the code thats in the barChartTopViewController.m (I made that class in the interface builder by pressing: File > Write Class Files)
I know its simple, but please go easy on me, im a total noob to all this, I just want to experiment with this stuff.
The Core Plot Example Project has the exact same code and configuration (Except the bar chart is an separate view rather then it being integrated into a view) so I have copied everything and It still doesn't work.
What do I need to do to get the code to execute to the CPTGraphHostingView (The code in the bar chart class should have made a bar chart but it did not)?
I know I have made a similar question, but I have tried a different way to last time.
So please, help me out.
I would be really grateful.
Thank you very
very much.