/SwiftChart

Primary LanguageSwiftMIT LicenseMIT

Introduction

Charts for swift 4.

Here is an example on how to use it:

Connection

import SwiftChart;

let chart = Chart(width: 500, height: 300);
let data: Data? = chart.draw(data: [61394, 52905, 70000], series: ["2015", "2016", "2017"]);