Daniel Gindi在ios图表中的x轴上的日期和时间

时间:2018-01-14 20:31:42

标签: ios date time ios-charts

如何在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 ""
}}

1 个答案:

答案 0 :(得分:1)

使用格式字符串配置dateFormatter,并为其添加时间。从记忆中可以看出:

dateFormatter.setDateFormat = "yyyy-MM-dd'T'HH:mm"

希望有所帮助!