Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 592 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 592 Bytes

ios-Line-Chart

Example Chart

With minimal code.

  @IBOutlet weak var LineChart: UIView!

  override func viewDidLoad() {
      super.viewDidLoad()
      // Do any additional setup after loading the view, typically from a nib.

      drawSeries(CurrentVC: LineChart, ySeries: [7.0, 2.0, 4.0, 3.0, 4.0, 6.0, 4.0, 3.0, 1.0, 12.0, 10.0])
  }