如何在Daniel Gindi的ios图表中在x轴上添加时间和日期?
提前感谢您的答案!
extension ChartXAxisFormatter: IAxisValueFormatter {
func stringForValue(_ value: Double, axis: AxisBase?) -> String {
if let dateFormatter = dateFormatter {
let date = Date(timeIntervalSince1970: value)
return dateFormatter.string(from: date)
}
return ""
}}
答案 0 :(得分:1)
使用格式字符串配置dateFormatter,并为其添加时间。从记忆中可以看出:
dateFormatter.setDateFormat = "yyyy-MM-dd'T'HH:mm"
希望有所帮助!