Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Dear friend i want to develop Bar Graph in iphone using core plot framework the data's are get from web services so i want example for Dynamic bar graph using web services please can any one give some use full link

share|improve this question

2 Answers

This will be a good tutorial for you.

There is a method called tubularBarPlotWithColor: in CPTBarPlot class for creating the bar chart.

[CPTBarPlot tubularBarPlotWithColor:[CPTColor redColor] horizontalBars:NO];
share|improve this answer

Look at the example apps included with Core Plot. The AAPLot app downloads stock quotes from the internet and creates a plot while the Real Time Plot in the Plot Gallery app shows one way update a plot with new data over time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.