gpt4 book ai didi

ios - SwiftUI 图表 : Adding Label To Bar Chart Bar

转载 作者:行者123 更新时间:2023-12-01 22:56:20 27 4
gpt4 key购买 nike

我在 SwiftUI 中使用 WWDC22 中引入的适用于 iOS 16 的新图表框架。

我希望每个条形的值显示在条形内部,但无论如何我在图表框架中看不到这样做。我能做的最好的事情是使用 ZStack 并尝试在图表顶部分层文本,这很有效,但随着数据的变化,文本不会保持在栏的中心。

有人发现了一种在 SwiftUI Charts 中本地执行此操作的方法吗?

最佳答案

可以使用以下代码使用叠加位置和中心对齐来注释条形图:

.annotation(position: .overlay, alignment: .center) { 
// your Text or other overlay here
}

带有注释的示例图表。

enter image description here

下面提供了用于创建图表的完整代码以供引用。

图表代码:

struct BarChart4: View {
var body: some View {
VStack(alignment: .center) {
Text("Basic Bar Chart")
.font(.callout)
.foregroundStyle(.secondary)

Chart (BarData4.data) { shape in
BarMark (
x: .value("Shape", shape.type),
y: .value("Count", shape.count)
)
.annotation(position: .overlay, alignment: .center) {
Text("\(shape.count, format: .number.precision(.fractionLength(0)))")
.foregroundColor(.white)
}
}
}
}
}

示例数据:

struct BarData4 {
static let data: [ShapeModel] = [
.init(type: "Square", count: 12),
.init(type: "Heart", count: 10),
.init(type: "Rectangle", count: 21),
.init(type: "Star", count: 15),
.init(type: "Circle", count: 8),
.init(type: "Triangle", count: 6)
]
}

和数据模型:

struct ShapeModel: Identifiable {
var type: String
var count: Double
var id = UUID()
}

关于ios - SwiftUI 图表 : Adding Label To Bar Chart Bar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73168258/

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