iOS图表x轴上的重复值

wfsdck30  于 2023-02-06  发布在  iOS
关注(0)|答案(2)|浏览(165)

我使用iOS Charts,x轴上出现重复的标签。

我得到了许多答案(firstsecondthird),我应该设置粒度设置:

xAxis.granularityEnabled = true
xAxis.granularity = 1.0

但是,当我这样做时,x轴上的标签就消失了。

我对x轴的设置:

let xAxis = lineChartView.xAxis
xAxis.labelPosition = .bottom
xAxis.labelFont = .boldSystemFont(ofSize: 12)
xAxis.setLabelCount(6, force: false)
xAxis.labelTextColor = UIColor(red: 0, green: 0, blue: 255/255, alpha: 1.0)
xAxis.axisLineColor = UIColor(white: 0.2, alpha: 0.4)
xAxis.gridColor = UIColor(white: 0.8, alpha: 0.4)
xAxis.valueFormatter = ChartXAxisFormatter()

我创建了一个自定义类,用于根据documentation的建议格式化传递给x轴的值:

class ChartXAxisFormatter: IAxisValueFormatter {
    func stringForValue(_ value: Double, axis: AxisBase?) -> String {
        let dateFormatter = DateFormatter()
        dateFormatter.setLocalizedDateFormatFromTemplate("MM/dd")
        let date = Date(timeIntervalSince1970: value)
        return dateFormatter.string(from: date)
    }
}
    • 更新**

多亏了@aiwiguna,并在Charts repo的帮助下,我能够创建一个自定义类,它包含两个内容:日期(Double)和相应的索引(Int),而不仅仅是日期。

class ChartXAxisFormatter: NSObject, IAxisValueFormatter {
    private var dates: [Double]?
    
    convenience init(usingDates dateArr: [Double]) {
        self.init()
        self.dates = dateArr
    }
    
    func stringForValue(_ value: Double, axis: AxisBase?) -> String {
        print("value: \(value)")
        print("dates: \(dates)")
        let index = Int(value)
    
        guard let dates = dates, index < dates.count else {
            return "?"
        }
        
        let date = dates[index]
        let dateFormatter = DateFormatter()
        dateFormatter.setLocalizedDateFormatFromTemplate("MM/dd")
        let formattedDate = Date(timeIntervalSince1970: date.rounded())
        return dateFormatter.string(from: formattedDate)
    }
}

其思想是拥有一个日期数组[1598409060.0, 1598409060.0],并通过使用索引访问它来逐个返回它们,记录valueindex确实显示了这种情况。
问题是,虽然重复标签的数量已减少以匹配地块的数量,但重复标签仍然存在:

这两个图应堆叠在一个x轴标签"8/25"的顶部。
我使用enumerated()来提取ChartDataEntry的索引:

var dateArr = [Double]()
for (index, fetchedMetric) in fetchedMetrics.enumerated() {
    let date = fetchedMetric.date.timeIntervalSince1970
    dateArr.append(date)
    if var yValues = metricDict[fetchedMetric.unit] {
        yValues.append(ChartDataEntry(x: Double(index), y: Double(truncating: fetchedMetric.value)))
        metricDict.updateValue(yValues, forKey: fetchedMetric.unit)
    } else {
        metricDict.updateValue([ChartDataEntry(x: Double(index), y: Double(truncating: fetchedMetric.value))], forKey: fetchedMetric.unit)
    }
}
xtfmy6hx

xtfmy6hx1#

这是因为当您设置图表设置(粒度= 1且ChartXAxisFormatter)时,每秒都显示在xAxis中
我更喜欢使用数组date来显示坐标轴中的日期,如下所示

public class DateValueFormatter: NSObject, IAxisValueFormatter {
    private let dateFormatter = DateFormatter()
    private let dates:[Date]
    
    init(dates: [Date]) {
        self.dates= dates
        super.init()
        dateFormatter.dateFormat = "dd MMM HH:mm"
    }
    
    public func stringForValue(_ value: Double, axis: AxisBase?) -> String {
        if value >= 0 && value < objects.count{
            let date = dates[Int(value)]
            return dateFormatter.string(from: date)
        }   
        return ""
    }
}

如果您不想更改值格式,您可以尝试将粒度设置为86400(1天中的总秒数)

b4lqfgs4

b4lqfgs42#

为了避免收到重复的值,我们必须创建一个新的变量,在本例中为minimalTimeInterval,在我的示例中为24小时,并且始终记录先前插入的值previousValue
变更前图表:

更改后的图表:

代码:

public class DateValueFormatter: NSObject, AxisValueFormatter {
    private let dateFormatter = DateFormatter()
    private var previousValue: Double = 0
    private let minimalTimeInterval: Double
    
    init(dateFormatter: String, minimalTimeInterval: Double = 60 * 60 * 24) {
        self.dateFormatter.calendar = Calendar(identifier: .gregorian)
        self.dateFormatter.dateFormat = dateFormatter //"dd MMM (E)"
        self.minimalTimeInterval = minimalTimeInterval
        super.init()
    }
    
    public func stringForValue(_ value: Double, axis: AxisBase?) -> String {
        let delta = value - previousValue
        if(delta >= minimalTimeInterval || delta < 0) {
            previousValue = value
            return dateFormatter.string(from: Date(timeIntervalSince1970: value))
        }
        return ""
    }
}

相关问题