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

date and time on x axis in ios charts by Daniel Gindi

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

使用格式字符串配置您的 dateFormatter,并为其添加时间。从记忆中,类似于:

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

希望对您有所帮助!