When will SwiftUI plot will support dates on the x-axes (hrs, month, years) and when will the plot library supports logarithmic scales.
Great progress so far.
Thanks.
When will SwiftUI plot will support dates on the x-axes (hrs, month, years) and when will the plot library supports logarithmic scales.
Great progress so far.
Thanks.
Swift Charts supports a temporal scale / axis, primarily when the Date
type is used as the Plottable
value. See for example https://developer.apple.com/documentation/charts/customizing-axes-in-swift-charts or published WWDC sample code, eg. .
Swift Charts also supports logarithmic and symlog scales: https://developer.apple.com/documentation/charts/scaletype and the code for this year's WWDC also uses a .log
scale.