I have used Charts library by @danielgindi to generate the graph for my iOS application. All seems works fine but we are facing issue with X-Axis data duplication.
Input Data for Graph in (X-Axis-Value, Y-Axis-Value)
("29/03/2017 00:00:00","2.7")
("29/03/2017 00:00:00","2.4")
("29/03/2017 00:10:00","1.3")
("29/03/2017 00:10:00","1.5")
("29/03/2017 00:20:00","1.8")
....
....
....
("29/03/2017 01:00:00","1.2")
("29/03/2017 09:00:00","2.7")
("29/03/2017 09:10:00","-10.8")
....
....
....
("29/03/2017 13:10:00","3.9")
("29/03/2017 13:20:00","-.8")
("29/03/2017 13:20:00","5.9"
Where X-Axis value is date time and Y Axis value is Double value associated to that date-time.
I have used following code for the formatting X-Axis
class ChartStringFormatter: NSObject, IAxisValueFormatter {
public func stringForValue(_ value: TimeInterval, axis: AxisBase?) -> String {
let date = Date(timeIntervalSince1970: value)
return date.toString(format: "hh:mm a")
}
}
But when I zoom the graph it has multiple values for X-Axis. How should I resolved this issues?
Expected Output For X Axis Value:
Initially - [12:00 AM, 03:00 AM, 06:00 AM, 09:00 AM, 12:00 PM, 03:00 PM, 06:00 PM, 09:00 PM, 12:00 PM]
When Zoom - [12:00 AM, 01:00 AM, 02:00 AM, 03:00 AM ...... 12:00 PM]
Again Zoom - [12:00 AM, 12:30 AM, 01:00 AM, 01:30AM, 02:00 AM, 02:30 AM, 03:00 AM ...... 12:00 PM]
Again Again Zoom - [12:00 AM, 12:10 AM, 12:20 AM, 12:30 AM ...... 12:00 PM]
iOS Charts Library Link: https://github.com/danielgindi/Charts