Tagged Questions

Core Plot is a open source plotting framework for Mac OS X and iOS.

learn more… | top users | synonyms (1)

11
votes
4answers
7k views

real time plotting on iPhone using core plot?

I want to use core-plot for drawing line graph dynamically. data won't come at a time, we will be receiving point by point dynamically. Is it possible to draw the chart dynamically using core-plot ...
9
votes
2answers
2k views

What are the alternatives to Core-Plot for drawing graphs in iPhone SDK

Are there any alternatives to Core-Plot for drawing graphs in iPhone SDK? I am having hard time integrating core-plot in my app. Lot of issues. Can you please suggest some alternatives to ...
8
votes
3answers
3k views

How can I implement a stock volume chart using core plot on iPhone?

I'm writing a stock charting application on iPhone using core-plot. What kind of chart should I use to plot the volume chart? Since I will also need to overlay the price charts onto the volume chart, ...
8
votes
3answers
2k views

How can I have tick marks in Core Plot with custom labels?

For my app's graph (line plots) it does not make sense to format the axis labels to tenths. It did not look like there was a way to change this without providing custom labels. I was able to add ...
7
votes
1answer
5k views

Core-Plot iPhone Animation Examples

I've been looking into core-plot for the iPhone and I'm having trouble finding any examples of animation actually being used. What I need to see is an example of how to use core-plots animation to ...
6
votes
3answers
2k views

How to animate the pie charts developed using core-plot library?

In the iPhone application Roambi, the pie chart shown can be animated to rotate with the user as if rotating a disc. We can hold and do lot of stuff with that. Someone mentioned that the Roambi app ...
6
votes
2answers
2k views

How to implement Zoom-in and Zoom-Out with Core-Plot line chart on iPhone?

Is it possible to implement Zoom-in and Zoom-Out with Core-Plot Chart component on iPhone? If so please suggest me how to do it? Thanks in advance.
5
votes
1answer
520 views

How do you enable touch interaction in Core Plot?

Has anyone tried to add touch interaction to CorePlot? I'm trying to implement custom layer to be able to draw a line on the chart which will show specific value and will draw itself in specified ...
5
votes
1answer
2k views

core-plot - refresh graph dynamically + iPad

i have a have graphview.m which creates a coreplotviewcontroller.view in this way CorePlotViewController *aCorePlotViewController = [[CorePlotViewController alloc] ...
5
votes
2answers
3k views

Using core plot for iPhone, drawing date on x axis

I have available an array of dictionary that contains NSDate and NSNumber values. I wanted to plot date on X axis. for plotting I need to supply xRanges to plot with some decimal values.I don't ...
5
votes
1answer
3k views

How do you provide labels for the axis of a Core Plot chart?

I am using the Core Plot framework, and attempting to work through the example applications. Are there any tutorials for using this framework? Specifically, how do you provide labels for X and Y ...
5
votes
4answers
4k views

OBJ-C: Getting the minimum/maximum value in a NSMutableArray

I want to get the maximum and minimum values of a NSMutableArray so I can create a core-plot plotspace and graph based around those max and min values. My code is as follows: NSMutableArray ...
5
votes
1answer
2k views

Core-plot Question : How to add a data Indicator

i want to add a data indicator line similar to the following image in core-plot. Any idea how i can achieve this using core-plot. I have just started to understand core-plot, so any tip will be ...
5
votes
8answers
4k views

Allow horizontal scrolling only in the core-plot barchart?

I am using core-plot lib to draw bar charts in my app like this My problem is that i want the enabling of grapgh movement only in horizontal direction so that I can see the records for a long period ...
4
votes
2answers
401 views

how to draw 3D pie chart using core-plot in ipad? [closed]

I have to draw 3D pie chart in ipad using core-plot API .how can i do it ? Please advise .
4
votes
2answers
2k views

iPhone 4 iOS5 Core Plot and ARC error:“The current deployment target does not support weak references”

I've converted my project to iOS 5 and enabled ARC. Now I need to integrate core plot with the project. When I try to instantiate a sample controller included with the Core Plot, I get about 20 errors ...
4
votes
1answer
121 views

Building a Mac OS X/Cocoa application for distribution with an imported framework

So I built an application which compiles and runs fine from Xcode. Now I want to distribute it to other people so they can use it. How do I do that correctly? I thought it was as simple as archiving ...
4
votes
2answers
746 views

iPhone : How to change gradient color for negative values in Core Plot?

How to change area gradient color for negative values in Gradient Scatter Plot in Core-Plot in iPhone? I want gradient colors as below: For positive values to be Green For negative values to be ...
4
votes
2answers
537 views

How to save a graphic created by CorePlot to a jpg file

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., Twitter). I did some ...
4
votes
1answer
454 views

constricting scrolling in core-plot

I would like to have my user scroll inside a CPXYGraph. I have a CPXYGraph as part of a CPHostingLayer, like in the tutorials. I enabled allowsUserInteraction, which is cool and allows scrolling. But ...
4
votes
3answers
870 views

How do remove the border around a core-plot graph

I am trying to remove the border around a core plot graph on the iPhone - but seem to be struggling on what should be simple in my mind. Pointers please!
3
votes
2answers
501 views

Core Plot 0.4 tutorial iOS

Does anyone have a good tutorial/book recommendation for using Core Plot 0.4 in iOS. I have never used it before and from looking at the tutorials that they have linked to it does not make sense. I ...
3
votes
2answers
660 views

Why am I seeing the following linker errors when building an iPhone app with Core Plot?

When building an iPhone app that uses the Core Plot framework, I am seeing the following linker errors: ld: warning: ignoring file ...
3
votes
1answer
926 views

Can't submit app with CorePlot using Xcode4

I created an application in XCode 4 that uses Core Plot. I installed Core plot as an aditional SDK following the instructions from ...
3
votes
1answer
578 views

MonoTouch Core-Plot Binding

I have trouble with using the Core-Plot library in MonoTouch. I use this as a starting point for my MonoTouch binding. For me it seems the binding isn't finished. I miss classes like CPXYGraph and ...
3
votes
1answer
384 views

How do I animate a CorePlot plot space using UIScrollView?

I know that one can turn on scrolling in a coreplot plot space as follows: plotSpace.allowsUserInteraction = YES; but this only activates one-to-one finger to graph motion. Is it currently possible ...
3
votes
1answer
1k views

Core-Plot PieChart Slice color

I am using core plot in one of my iPhone projects. Is it possible to change the color for a selected slice in a pie chart (using CPPieChartDataSource, CPPieChartDelegate)?
3
votes
1answer
137 views

CALayers not showing when drawn the first time

I've been struggling with a strange problem which has arisen in using the CorePlot framework, but which I suspect isn't an error in the framework itself. I'm hoping somebody here will have seen ...
3
votes
1answer
2k views

OBJ-C: Core-Plot XY-Axis Fixing

I want to fix the axes so that they are always to the left hand side and bottom of my plot space. My current implementation is not enabling userInteraction so no need to worry about scrolling. // ...
3
votes
1answer
1k views

How do I add labels to CPBarPlot barplots?

I'm completely new to Core Plot and have a working bar graph, but the visual is kind of useless for me unless I know which object is represented in each bar. I have seen that there is a method called ...
2
votes
1answer
70 views

How do you use time as an axis in a Core Plot graph?

I have two arrays arr1 and arr2 containing datetime in dd/MM/yyyy HH:mm:ss and HH:mm:ss respectively. For eg. arr1[0] contains 23/12/2011 09:15:30 while arr2[0] contains 09:15:30. Note that arr1 ...
2
votes
1answer
79 views

Labeling in Pie Slice in core plot iphone

I have created a pie chart using core plot . I have attached image below for your reference. I have used negative value of label offset so that label be inside the pie slice . I wanted to fit ...
2
votes
0answers
79 views

How to display live core plot graph in iPad? [closed]

Possible Duplicate: real time plotting on iPhone using core plot? I want to display live core plot graph in iPad like ECG live graph.If anyone know examples or sample code or any ...
2
votes
2answers
88 views

how to get information of a point when that point is touched in coreplot?

I'm working in scattered plot of core plot. when I touch any drawn point in that graph,I need to display some information related to that touched point. How can I achieve that? Thanks in advance.
2
votes
2answers
672 views

How do I use the Core-Plot framework for iOS in Xcode 4.2?

I'm having trouble using the Core Plot framework in my project. I tried following these steps from the core-plot site but xcode says that it cannot find "CorePlot-CocoaTouch.h". I'm confused, I also ...
2
votes
1answer
249 views

iPhone Core-plot: Chart Zoom In Zoom out, Y axis Bigger, Y axis Smaller

I am now using Core-plot for iPhone chart Development. But it has some requirement i can not reach. I am now using CorePlot 0.4, example code AAPLot to develop Please have a look the following ...
2
votes
2answers
150 views

Does any Framework Support User to draw “candle graph” on the iPhone?

iPhone sdk :Does any Framework Support User to draw "candle graph" in iphone sdk? I have tried following framework: MIMChart-Library CorePlot But it seems not example to show that how to draw ...
2
votes
1answer
167 views

How to animate bars of barchart-coreplot

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 plot. That means bars in the graph ...
2
votes
2answers
936 views

How to set chart width with Core Plot?

I have a nib file with File's Owner set to this view and it only has one View that has a custom class CPTGraphHostingView set. It is connected to this view via an outlet. This view loads, but what it ...
2
votes
2answers
2k views

How do I use the Core Plot framework with Xcode 4?

How do I install the Core Plot framework into Xcode 4? This older tutorial has instructions on how to install it for Xcode 3, but I could not find any similar instructions for Xcode 4. What do I ...
2
votes
2answers
933 views

How to plot NSDate along X axis using Core plot

I have tried going through all the examples in core plot, esp dateplot example, but still i am stuck in implementing the plot with hours along the x- axis. Please help me find out where i am going ...
2
votes
2answers
351 views

CorePlot XAxis Labels not displaying

Hey, Using CorePlot recently but the Problem is, that the Labels I set don“t show up, the one thing I can see are the major and minor TickLine, but also only above the x-line not below. Here is my ...
2
votes
2answers
1k views

core plot custom Theme?

I'm using Core-Plot for a trend chart in an iPhone app and haven't found how to customize the background. I can create a theme using the built-in themes, like kCPPlainWhiteTheme, but how can I change ...
2
votes
1answer
229 views

Core-Plot: CPPlotSpaceDelegate methods not getting called in iPhone SDK

CPPlotSpaceDelegate methods not getting called in my app. I have tried putting delegate implementation tag in header like <CPPlotSpaceDelegate,CPPlotDataSource> EDIT: I have even tried ...
2
votes
1answer
429 views

How to pass touch event to a pie chart

I am new to core plot framework and facing an issue: i am CPGraphHostigView to draw a pie chart. As the CPGraphHostigView doesn't detect touch events i have an UIView on it which can detect touches. ...
2
votes
1answer
525 views

Multiple y-Axis in CorePlot

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 the y-Axis of the second ...
2
votes
1answer
778 views

How do you enable touch selection of a section in a Core Plot pie chart?

I am using the Core Plot framework to draw a pie chart, and am having no issues in drawing the pie chart itself. However, I need the pie chart to be interactive in nature, i.e., if I tap on any ...
2
votes
1answer
519 views

How can I create better looking charts than those generated by Core Plot?

I'm looking for good library for iphone to draw charts (pie chart, bar chart). I've tested Core plot, which was recommended by many people, but I think the generated charts look poor. I saw example ...
2
votes
3answers
2k views

Is there an example project that contains Core Plot?

I wonder if anyone ever posted an example project that uses Core Plot?
2
votes
1answer
433 views

Core Plot: How to set xRange/yRange with different scales?

I am wanting to use Altitude for my Y range and Distance for my X range. Currently this is what I am using: plotSpace.xRange = [CPPlotRange ...

1 2 3 4 5 10