I want to plot a bar-graph in my application. How should I do it exactly ?(I have no idea in Graphs). Please suggest some steps to start with and go on.
Thanks
|
|
|
Use this buddy. :) EDIT Installing Core Plot might be some headache for you, if you need help in that, let me know. If you need very simple graphs you can go for ECGraph |
|||||||||||||
|
|
depends on what you really want. If you just need a bunch of ugly bars core-plot might be a bit too much for you. It takes this much code to implement a bargraph. I think this is like half the code you would need for core-plot datasources. And even a nice implementation will take less time than integrating core-plot into your project.
|
|||||||||||
|
|
You can check out the PowerPlot library. It is a powerful choice for native charts on iOS, here are a two sample bar graphs:
Using PowerPlot, the code needed to generate these two graphs is available here (upper chart) and here (lower chart). |
|||
|
|
|
There are several commercial tools for iOS charting, all of which can render bar graphs:
Full Disclosure - I work for Scott Logic, which is the parent company of ShinobiControls |
|||||||||
|
|
CorePlot is the best Graph plotting library in ios..Here are some screenshot examples on what you can create with it.. |
|||
|
|
|
I've been puzzling this for awhile now. In many cases, subviews will work. Just use algebra and voila, sized just fine. For large ones, you might want to avoid views, and go deeper into the draw functions, then use algebra |
|||
|
|
|
You can try this one https://github.com/eul/ILGraphics There is Demo project where you can find how to use it or see implementation to do it yourself. |
|||
|
|
|
Refer Raywenderlich core plot tutorial it would help you lot to understand core-plot and how to crate various type of graph using it. linke for the same is http://www.raywenderlich.com/13271/how-to-draw-graphs-with-core-plot-part-2 |
|||
|
|