Merge pull request #552 from wnagele/main

Device metrics chart improvements
This commit is contained in:
Garth Vander Houwen 2024-03-14 17:28:09 -07:00 committed by GitHub
commit f78ab7ac9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,6 +50,7 @@ struct DeviceMetricsLog: View {
x: .value("x", point.time!),
y: .value("y", point.channelUtilization)
)
.symbolSize(25)
}
.accessibilityLabel("Line Series")
.accessibilityValue("X: \(point.time!), Y: \(point.channelUtilization)")
@ -64,6 +65,7 @@ struct DeviceMetricsLog: View {
x: .value("x", point.time!),
y: .value("y", point.airUtilTx)
)
.symbolSize(25)
}
.accessibilityLabel("Line Series")
.accessibilityValue("X: \(point.time!), Y: \(point.airUtilTx)")