gpt4 book ai didi

ios - iOS 图表的 x 轴上的重复值

转载 作者:行者123 更新时间:2023-12-05 04:59:15 35 4
gpt4 key购买 nike

我正在使用 iOS Charts,我在 x 轴上得到了一个重复的标签。
enter image description here

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

xAxis.granularityEnabled = true
xAxis.granularity = 1.0

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

enter image description here

我对 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 确实显示了这种情况。

问题是,虽然重复标签的数量已减少以匹配地 block 数量,但重复标签仍然存在:

enter image description here

在一个 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)
}
}

最佳答案

这是因为当您设置图表设置时(粒度 = 1 和 ChartXAxisFormatter)在 xAxis 中显示每一秒

我更喜欢使用数组日期在轴上显示日期,像这样

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 天内的总秒数)

关于ios - iOS 图表的 x 轴上的重复值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63607718/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com