Search code examples
iosobjective-ciphonemobile-application

Plotting multiple curves in same graph


enter image description here

I'm trying implement a graph like the attached image. I tried many open sources but no luck. Can someone help me where can i get this kind of graph.


Solution

  • As far as the drawing is concerned, it's simply a matter of drawing the pieces in the right order. Let's walk through how you would draw the image shown in your screen shot.

    • Draw the whole background first.

    • Start with the highest curve. Draw the curve; use the curve as the top of a mask or clipping area, or simply close the curve using the right and bottom boundaries, and fill so that you get the color below it. Now the whole area below it is yellow.

    • Do the same with the next curve. Now the whole area below that curve is orange, covering all but the top of the yellow you drew previously.

    • Repeat for all the other curves.