How to add custom value in charts for bottom label in swift iOS – Ios swift
I have to show [0, 25, 50, 75, 100] with dollar sign in Charts using swift iOS var xValue = [25.0, 50.0] var dollarValue = ["$25", "$50", "$75", "$100"] Added in view didLoad rightAxis.valueFormatter = IndexAxisValueFormatter(values: dollarValue) func updateCharts() {…