IPhone, how to draw a simple line chart from an array of prices and dates?

I am looking for a very simple linear graphics library design. However, all the examples seem rather complicated. I have a database with two main fields, date and value.

Can someone point me or provide me with sample code that will do just that?

+3
source share
2 answers

Here is sample code for line graphs in the Apple Accelerometer sample application.

0
source

I have successfully used the CorePlot library . Here is a really good tutorial on how to use it.

+3
source

Source: https://habr.com/ru/post/1768236/


All Articles