I started with core-plot now and came to some problems. I followed the tutorial from this page: http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application
and completed with the instructions from this page: http://code.google.com/p/core-plot/wiki/UsingCorePlotInApplications (such ... |
I'm having trouble compiling the current release.
I was able to download a copy of the source distribution today using:
hg clone https://core-plot.googlecode.com/hg/ core-plot
I opened the "core-plot/framework".
I then double clicked on ... |
I downloaded the CorePlotSDK, installed it using the readme instructions: copied the coreplotsdk directory to ~/Library/SDKs/ - imported in the PCH file - added $HOME/Library/SDKs/CorePlotSDK/${PLATFORM_NAME}.sdk to the additional SDKs and ... |
I'm trying to walk someone through adding CorePlot to their iPhone app. I have it working on my computer, but he keeps getting the
CorePlot-CocoaTouch.h: no such file or directory
error. ... |
I attempt to install CorePlot according to the readme file, but as soon as I add $HOME/Library/SDKs/CorePlotSDK/${PLATFORM_NAME}.sdk to Additional SDKs in the project settings I get a massive spew of compile ... |
I'm new to coreplot and not sure quite where to start. I would like to plot data points as they arrive. I'm recording finger touches and how long between each ... |
I am using CorePlot to draw different graphs in my application. Then, I would like to save this graph to a jpg file and publish to some social networking site (e.g., ... |
|
My app uses CorePlot and runs fine on simulator
(it accesses libCorePlot-CocoaTouch.a from:
/Users/myName/core-plot/build/Debug-iphonesimulator ).
To run on device, xcode expects libCorePlot-CocoaTouch.a in:
... |
This is a common case:
In code below (simplified), number of the dictionaries added to the array varies depending on size of data set (as usual).
So it is impossible to ... |
What I'm trying to accomplish with CorePlot on the iPhone is to plot two graphs in two different PlotSpaces. The y-Axis of the first PlotSpace should appear on the left and ... |
I have istalled core plot 0.2.2 by downloading from here.
I have followed the instructions as given in the documentation but it is giving an error saying "No additional SDK Exists ... |
This seems like it's happened before but somehow ended up working itself out. It's happened again and I can't seem to get this fixed. I use the CorePlot Cocoa ... |
I want to create chart application.I red that CorePlot will support this kind of chart Application.I don't know where may i go to download the CorePlotSDK,and how to install and where ... |
Hai All,
I'm downloading the source code from this link
http://www.switchonthecode.com/tutorials/using-core-plot-in-an-iphone-application
In this sample application CorePlot-CocoaTouch.XCodeproject has shown in red color(there is nothing).where should i download the CorePlot-CocoaTouch.XCodeproject(static library)and install it ... |
I am getting the error
CorePlot-CocoaTouch.h: No such file or
directory". I have kept the
coreplot0.2.2 folder in the desktop. I
used the following path for ... |
I am using the coreplot for displaying the graph in iPhone. I want to display the label(10,20,30 .. ) properly in the plotArea. Currently, The bar and label are displaying in ... |
I am getting the following error when I try to implement Core-Plot in my iPhone app.
CorePlot-CocoaTouch.h: No such file or directory
I downloaded installed the Core-plot package from the below link
|
I am using the coreplot for developing the app in iPhone. I have some doubts to set the XRange and YRange. Actually I want to display the XRange as like the ... |
Please excuse me for asking this old problem but I have really tried
every solutions I could find in this forum and over at stackoverflow,
and the problem still hasn't been ... |
How to add layers in coreplot(Bargraph)
|
|
hiii
i ahve date vales as xaxsis and duration as yaxis i need to take these vales from database and need to plot on coreploat graph view please help me how to ... |
In iPhone App i am using core Plot vertical bar chart.
How to Remove shadow effect in Vertical Bars?
Here as shown in figure bars are displaying with shadow
 
What ... |
Hi right now am facing an issue with datalables! while am trying to display them on barplots they are getting printed somewhat far from them,but i need to print ... |
Hi I am trying to implement core plot in My iPhone App
for that I use the below code
-(NSNumber *)numberForPlot:(CPPlot *)plot
...
|
Hi in my iPhone App I am implementing coreplot VarticalBar Chart
Though I am taking Larger value For Y axis but It is displaying upto certain limit only as shown ... |
hi people i had drawn a piechart using coreplots in my application,now i need to split a piechart into different pieces/objects and need to drag those objects.How to achieve this functionality.Thanks ... |
I downloaded the latest coreplot installer from their site and extracted the package file the procedure as mentioned in the installer was followed
- Add to your project's .PCH file:
#import < CorePlot/CorePlot.h ...
|
I am getting confused on setting header path.
|
I have followed the documentation of CorePlot. After doing everything, I am facing following problem:
error: 'CPLayerHostingView' undeclared (first use in this function)
error: 'hostingView' undeclared (first use in this function)
error: ...
|
I want to plot one graph in which curve & line drawing both. I used scatterPlot. How to draw curve with Coreplot.
Thanks in Advance.
|
i know i am asking the same question as this question is already ask many times by other people but still i have problem after following all steps
First, drag the CorePlot-CocoaTouch.xcodeproj ... |
I am using the MonoTouch 4.0.3 framework and having trouble loading and linking the library on to the device for the provided example code for the CorePlot API. It seems to ... |
I am new to the iPhone development can anybody help me to draw curve chart in iPhone using only three values
-(NSUInteger)numberOfRecordsForPlot:(CPPlot *)plot{
NSLog(@"Array1-->%@",Array1);
return [Array1 ...
|
I am new to coreplot. I would like to insert a horizontal scroll bar on my application in order to move my graph. I don't know how do to this.
I find ... |
I have to implement the scatter graph which have to contain the time, date, month, year acc to the segment clicked. The dta for this is to be getting from database ... |
How to remove negative axes from corePlot(scatterplot) in iphone and how to set the area of graph that is visible?
|
Am using core plot to draw barchart..I wanna extract values from table view and then display the barchart according to it..is this possible?
Am new to iphone application development..so can anybody pls ... |
I am writing an iPhone app that uses CorePlot for graphing. Specifically bar graphs. Is there any way to make a bar graph where the bottoms of the bars ... |
I am writing an iPhone app that uses CorePlot for graphing a line plot (Using CPScatterPlot). I need to graph a line plot that is not continuous (like y=1/x or ... |
I have a iPhone app with a CorePlot graph. I would like the user to be able to zoom in and out of the graph similar to the default functionality ... |
I have an iPhone app with a CorePlot graph. I have a button placed next to the graph which calls scaleToFitPlots: on the graph when pressed.
The problem is that sometimes ... |
I am trying to use CorPlot to draw pie charts to display the data but while setting up the project when i am trying to include
#import "CorePlot-CocoaTouch.h"
it's giving errors saying ... |
I just start using Xcode 4 and i'm trying to draw graph by adding "CorePlot-CocoaTouch.xcodeproj" into my project But when i did this i would not get "libCorePlot-CocoaTouch.a".Could anyone tell me ... |
I am trying to run the drop plot example of coreplot but i am getting the following errors...
ld: warning: ignoring file /Users/nagarjun/Documents/CorePlotInstall_0-1.3/Source Code/build/Debug-iphoneos/libCorePlot-CocoaTouch.a, file was built for archive which is not ... |
I am new to iphone development and coreplot.
I want to draw a barchart according to some data, that i have done.
now i want to give some animations to the bars of ... |
I am working on a iphone barchart application. I am not getting the ticker label value in accordance as shown in below image:
barChart = [[CPTXYGraph alloc] ...
|
Here I stuck with a problem in drawing the pie chart using coreplot in iphone sdk.
Actually my problem is to represent a line between each slice and the title of that ... |
I am now using Core-plot to develop application.
I am looking for some touch event for user touch one point of the chart,
then it show up the price.
When i take a look ... |
CorePlot: how to set touch event, when user click the CandleStick on the chart, then it can show the Candle X and Y Value?
The value in left side is not correct,because ... |
I want to display CPTAxisLabel intwo lines if the text length is greater than 50 characters. How can i do that? I saw a method to draw a string in a ... |
- How to Get a Correct Value After Zoom?
- How to Get A Correct Scale Number After Zoom?
- How to put Yaxis another side like the following photo

The ... |
I have to display values in slices of pie chart which i created using core plot in ipad .
can you Help me to sort out this ??
Regards,
Amit
|
I am using CorePlot 0.9 and it seems to be missing the isFloatingAxis property that others have mentioned online. It is somehow not in 0.9?
I am wanting to anchor my ... |
I am using CorePlot to graph a set of data. Data for my x-axis consists of dates, while data for my y-axis consists of floats (which I then turn into NSNumber). ... |
How to draw multiple lines in coreplot
i can plot one data like this
// Create a green plot area
CPTScatterPlot *dataSourceLinePlot = [[[CPTScatterPlot alloc] init] autorelease];
dataSourceLinePlot.identifier = @"Green Plot";
CPTMutableLineStyle *lineStyle = [[dataSourceLinePlot.dataLineStyle mutableCopy] ...
|
I am using coreplot 0.9 .I had tried setting linecolor property for CPTLineStyle by
CPTLineStyle *lineStyle = [CPTLineStyle lineStyle];
lineStyle.lineColor=[UIColor grayColor];
But it is giving error that linecolor is readonly property. Please give me ... |
I finally somehow managed to add coreplot framework to my project.
Is there any documentation available on how to use it?.I googled it but couldnt get it.
And all the examples i found ... |
- (void)viewDidLoad
{
graph = [[CPTXYGraph alloc] initWithFrame: self.view.bounds];
CPTGraphHostingView *hostingView = (CPTGraphHostingView *)self.view;
hostingView.hostedGraph = graph;
CPTPieChart *pieChart = [[CPTPieChart alloc] init];
pieChart.dataSource = self;
pieChart.pieRadius = 100.0;
pieChart.identifier = @"PieChart1";
pieChart.startAngle = M_PI_4;
pieChart.sliceDirection = CPTPieDirectionCounterClockwise;
self.pieData= ...
|
CorePlot: Candle Stick ,
how to set more distance between every stick when zoom in and zoom out?
When i try to zoom out, it looks really terrible.
How can i fix it?
![]() |
How to draw Pie chart like below by using coreplot???
|