How to add Strings on X Axis in iOS-charts?

Hello recently I encountered the same problem and solved it this way- class ViewController: UIViewController { var months: [String]! var unitsSold = [Double]() weak var axisFormatDelegate: IAxisValueFormatter? @IBOutlet var viewForChart: BarChartView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. axisFormatDelegate = self months = [“Jan”, … Read more