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

learn more… | top users | synonyms (1)

0
votes
1answer
15 views

Core Plot on iOS 5

I have faced a bug using CorePlot on iOS5. I have installed Mercurial, launched Terminal and downloaded the latest version of the source using this command hg clone ...
0
votes
1answer
20 views

Core Plot - number of decimal places for plot label

Am trying to plot memory usage using Core plot in an iPhone App. I want the labels in the plot to show six decimal places, but it shows only four, though tI have coded to show 6 using the code snippet ...
0
votes
0answers
12 views

Core Plot : Grid lines don't appear when labeling policy is not automatic

Am trying to plot a simple statistics using Core Plot in an iPhone App. I initially used the labeling policy as CPTAxisLabelingPolicyAutomatic for both the axes, and the grid lines appeared fine as ...
0
votes
1answer
23 views

Core Plot : Grid lines appear once per two plots

Am using Core Plot to plot some memory statistics for an iPhone App. Here is a sample plot Why is the grid line appearing only for every alternating plot? I want it to appear for every plot. How do ...
1
vote
0answers
13 views

Core-Plot dynamic graph don't work

I need to make dynamic graph with core-plot. So i make button and on touch, popover with tableView where you can select what graph you want to see. So in didSelectRow method i have new array with ...
0
votes
1answer
23 views

coreplot reload data not changing color

i have a scattergraph that successfully plots. i have a NSArray of custom objects each of which contains the name for annotation, x value, y value, symbol color, symbol shape. when i load the graph it ...
0
votes
1answer
18 views

ios: Coreplot Multiple datasets Have the same data source and overlap?

i am trying to display two lines on the same scatter plot. I've successfully put both on one chart. One is green, the other, red. As of right now, they appear to be pulling from the same data ...
1
vote
1answer
35 views

ios: Coreplot, having trouble getting multiple plots on one chart

I have been working on this all day and still haven't a clue. I have made two datasets and put them into a dictionary that I then use as the datasource for my plot. Everything should be working but It ...
0
votes
0answers
21 views

Coreplot CPTBarPlotDelegate Xamarin not working

I'm trying to create an interactive graph using coreplot in xamarin.ios. I want to create a graph when I touch the bar it will show an information on the graph. This is my code: var plotspace = ...
0
votes
1answer
33 views

Charts not getting plotted on iOS 5

I am using Core Plot to draw charts in my iOS application. The charts were getting plotted nicely till I was using core plot version 1.0. I just upgraded my core plot to version 1.2 and tested it on ...
1
vote
1answer
65 views

Draw Bar Graph, Pie Chart, Scatter Graph using Core Plot versus jQuery

In iOS application, there was a requirement for drawing graphs & pie charts. I did RnD and find two ways to do this: Using Core Plot [Screenshot 1/2] Using jQuery in webview [Screenshot 3] ...
1
vote
1answer
48 views

Core Plot doesn't draw the axes, why?

I'm learning Core Plot and I've come to draw the following graph of the sinus function with Core Plot 1.2: As you see, the axes aren't drawn, even if I configure my axes as in the following ...
1
vote
1answer
26 views

Animate new data insertion in core-plot (iOS)

I am trying to animate the "drawing" of new data using a CPTScatterPlot objects. I am now looking at the RealTime example that you can find here in the examples subdirectory. It is one of the example ...
0
votes
0answers
27 views

drawing a line graph with out using coreplot

Is there a third party tool to draw a line graph since we are not suppose to use coreplot due to some reasons. we are suppose to draw three curves(actual curve , minmal curve and maximal curve) ...
1
vote
2answers
52 views

Core Plot - X-Axis moving position when plotting less points

I have a strange problem where my x-axis moves down the plot area when I'm plotting less points. My graph has 2 lines plotted - 1 for previous year and 1 for current year values. My original graph ...
1
vote
1answer
34 views

CorePlot: Centering Ticks on right-aligned Y Axis

I'm using CorePlot to draw a bar chart according to a specific design, and I'm having trouble getting the ticks on my Y-Axis centred. By that I mean that half the tick should be on the left side of ...
0
votes
1answer
17 views

Taking too much time to set lable's rotation and offset Using core plot

In my application, I am using core plot library for chart, I am using DatePlot example from that. While i use two statement as below x.labelRotation = M_PI / 4; x.labelOffset = 10.0; ...
0
votes
1answer
54 views

How to dynamically change Core Plot‘s label

I encountered a problem when using a custom label in Core Plot: My Core Plot supports zoom. The x-axis label is custom x.axisLabels On first load, the interface is normal, but when I narrow Core ...
0
votes
1answer
45 views

How to detect the coordinates of a custom UIView on CPTPlotspace?

In my App, I am using Coreplot to draw a CPTScatterPlot. Now i want to do a scanner on the chart and this animation of UIView (a line) should be like a Line aligned with Y-axis and travels through x=0 ...
1
vote
3answers
103 views

Using NSOperatonQueue to speed up long calculation

I'm looking for ways to speed up a lengthy calculation (with two nested for-loops), the results of which will be shown in a plot. I tried NSOperationQueue thinking that each of the inner for loops ...
0
votes
1answer
30 views

Core Plot : padding for the graph

Am trying to draw a simple line plot using Core Plot. The plot labels seem to get sliced off near the ends. Am setting the padding this way : self.graph.plotAreaFrame.paddingBottom = 25.0; ...
0
votes
1answer
36 views

Coreplot slip in ScatterPLot location

I have upgraded to the latest version of Coreplot (1.2) and came across a problem. My graph has two plots inside it. A bar plot and a scatter plot. The scatter plot is the line representation of bars ...
1
vote
1answer
35 views

Upgraded to core polt 1.2 and now getting black lines

I had a bar graph working using core plot 1.0, when I upgraded to the newer version of Core Plot I now get black likes on the left side of the graph (y-axis). I am pretty new with core plot and not ...
0
votes
1answer
38 views

UICollectionView scroll lags with core plot

I'm using a UICollectionView on my iPad 3 to display a dashboard of BarChart using CorePlot. I have around 3 pages of 6 BarChart. When user scrolls the UICollectionView there're some lags. I have ...
0
votes
2answers
49 views

Core plot majorIntervalLength : unable to make it work

am trying to plot a simple graph (cannot be so tough! I have used core plot successfully before!). I have some dates to be plotted in the x-axis. And some small float values in the y-axis, like ...
0
votes
0answers
41 views

iOS : View works in ViewDidLoad but not once reloaded?

i'm pretty confused with this problem. Basically, I have a coreplot chart that uses numbers i've parsed from the web. The view works perfectly the first time it's loaded but i've since put a reload ...
0
votes
1answer
40 views

Core plot : Unable to set date/minute in x-axis

Am breaking my head on this since yesterday and can't get it to work! All I get is a plain x-axis line, y-axis line (not even the ticks or labels!) and chart title! Please help! Seems so simple, but ...
0
votes
1answer
8 views

Scatterplot Not Showing

I'm doing an application that requires core plot for drawing charts, I'm new to this library and I am finding it pretty hard to find good documentation or examples. I'm running into a problem where ...
0
votes
2answers
35 views

Core Plot Logarithmic axis and panning

I am using a core plot XY Scatter Plot, and I set the plot space scaleType to LOG for logarithmic. When the user zooms, after that, a panning causes the y-axis to scale as well, as if the user was ...
0
votes
1answer
25 views

core plot zoom - pinchgesture

I have a problem with pinch gesture for zoom, the main problem is that when I zoom I zoom the center of view, so if I pinch on the top right or bottom the zoom is alway on the center of view. This is ...
0
votes
0answers
40 views

Use Javascript and/or HTML 5 for iOS app graph

I'm trying to decide which is the best direction to include a simple XY line graph in a iOS app I'm working on. I've looked into core-plot, but it looks way overkill for what I'm trying to do. While ...
0
votes
1answer
39 views

core plot Framework - How to set custom UIView in CPTPlotSpaceAnnotation

I want to set a custom uiview with label outlets in my graph, if a plot symbol was pressed, using the scatterPlot:plotSymbolWasSelectedAtRecordIndex: method. But how can I give the plot area the ...
0
votes
1answer
71 views

Not able to plot 3 graphs in 3 different views using core-plot iOS

I am using core-plot library to plot a graph in 3 different view..Problem is among all of 3 only 3rd graph get displayed correctly...But if I draw each graph separately then they always shows up ...
0
votes
0answers
11 views

Remove shine/gradient from bar graph plots in Core Plot? [duplicate]

I am trying to remove the gradient or "shine" from the bar graph on a Core Plots bar graph. The gradient here is the coloring effect on each bar that makes it look rounded or 3D. Is there a method to ...
0
votes
1answer
31 views

core plot datasource - issue

I have a question for optimize a core plot graph, if I want to plot the function y=8*sin(x) I use a parse and I get the value of a range (for example -5,+5), after calculate it I plot the graph. If I ...
0
votes
1answer
28 views

core plot, uipinchgesture handle end state

I need to handle the end of pinch gesture, but I don't find away to do it, I try hostingView.gestureRecognizers but after this there isn't a uipinchgesture for get the state of gesture. This method ...
0
votes
1answer
55 views

xamarin core plot y-axis value

Hello guys I have a problem with core plot in xamarin. I managed to create a graph like below: click here for the graph I'm using this code: /// <summary> /// Configure the Axes of the ...
0
votes
1answer
37 views

Possible to move Core Plot piechart labels?

I am using Core Plots version 1.2 and I would like to have the labels for each section of the chart to move closer to the center of it. How do I do this?
0
votes
1answer
68 views

How to add animation to scatter graph using core plot?

I am using core plot library to display scatter chart in my app i display the scatter chart in my app from tutorial http://www.raywenderlich.com/13271/how-to-draw-graphs-with-core-plot-part-2 now i ...
0
votes
1answer
14 views

coreplot: reloadDataInIndexRange — how to use it?

currently, I am using CPTXYGraph to plot my x,y graphs on my iphone application. However, I feel that the reloadData function is especially costly when I need the data to plot dynamically in real ...
0
votes
1answer
36 views

Core Plot Pan Gesture Recognizer requireGestureRecognizerToFail

Hi there CorePlot fans, I got a little tricky question: is it possible to call the auto panGestureRecognizer in my graph? Because I would like to limit the options were it gets called with: ...
1
vote
0answers
44 views

How to change plot colour

i am using the core plot library for displaying scatter graph.i am displaying two plots in the same graph, i want to display 2nd plot is different colour. how to display to change the 2nd plot colour ...
0
votes
1answer
56 views

CorePlot 1.2 - pod install no response

I just added pod 'CorePlot', '~> 1.2' to my Podfile, now trying $ pod install Resolving dependencies of `./Podfile' Updating spec repositories Cocoapods 0.18.1 is available. ...
1
vote
1answer
62 views

Core Plot unable to draw a line

Based on the example RealTime presented in the library Core Plot, I tried to reimplement it on my project. I am able to update y axis, add a symbol, draw label, etc. But I'm totally unable to draw ...
0
votes
1answer
20 views

Project with corePlot library cannot run in iPad

I have to continue a project that developed by another developer. He has used CorePlot library for graphs. I can run this project in my semulator without any issue. But when I try to run it on the ...
-1
votes
1answer
23 views

Arrow at the end of the graph with corePlot?

is it possible to add an arrow on the graph like that with corePlot ?
0
votes
1answer
138 views

Core plot : ios show two y axis and ScaterPlot and Bar Plot in Same CPTGraph

Hi please guide me write way to show two Y axis (left side and right side) with one x axis using core plot , and also i have to draw Scaterplot and barplot both in single CPTGraph. CPTScatter plot ...
-2
votes
0answers
42 views

Core plot : ios show two y axis and ScaterPlot and Bar Plot in Same CPTGraph [closed]

Hi please guide me write way to show two Y axis (left side and right side) with on x axis using core plot , and also i have to draw Scaterplot and barplot both in single Graph. Please share if you ...
0
votes
1answer
21 views

Nibs view in other nibs subview with coreplot, cpgraph takes super view as its attribute

I load a A-viewcontrollers view to other B-viewcntrollers sub view (UIview), A is having graphs with coreplot and initialize CPTgraph. When 'A' is initialize all the property of it like.:array or ...
0
votes
1answer
81 views

How to add multiple core plot plots on one screen

Ok I'm stumped. I'm trying to use Core Plot 1.2 in my iOS app and I am trying to add two plots onto one screen. My code for my View Controller is below. There is a NIB file too but it is empty - the ...

1 2 3 4 5 23