Post

Replies

Boosts

Views

Activity

Reply to How do I remove the background lines of a chart
You can also set the Visibility directly: Chart{     BarMark(x: .value("o", 5),             y: .value("m", "Duration: 5m"),             width: 7)         .foregroundStyle(.orange)          BarMark(x: .value("o", 7),             y: .value("m", "Intervals: 7"),             width: 7)         .foregroundStyle(.teal) } .chartYAxis(.hidden) .chartXAxis(.hidden)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’22
Reply to File templates list do not contain storekit configuration file
Same issue with Xcode 26.2. The option "StoreKit Configuration File" does not appar in the "Other" section. Searching for it does also not yield any results.
Replies
Boosts
Views
Activity
Dec ’25
Reply to Archive Build failed " Command SetOwnerAndGroup failed with a nonzero exit code" in Xcode 14
Had the same issue and solved by deleting derived data.
Replies
Boosts
Views
Activity
Feb ’24
Reply to Xcode 14.2 no longer runs properly under rosetta after installing 14.3 beta
That I know, as mentioned in my OP. That is not the issue though.
Replies
Boosts
Views
Activity
Feb ’23
Reply to Revert yAxis values to start at the top with lowest values
Thanks for the idea Claude31, it kind of works to negate the number. The lowest numbers are now top to bottom, but I also have a gradient that now appears on the wrong side of the linke marks.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to [Swift Charts] custom LineMark symbol is transparent
Thank for looking into this darkpaw. The final design will include a number inside the circle, and the default opacity would make the text more difficult to read. I will continue to play around with this and hopefully I will find a solution- I will post it here if I find something. Thanks again for the help.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to [Swift Charts] custom LineMark symbol is transparent
Ok, I need to add a post-it note to my monitor "in SwiftUI- order matters". It will work as expected if the order of LineMark and AreaMark is swapped. Chart { ForEach(rankings) { element in AreaMark(...) LineMark(...) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to How do I remove the background lines of a chart
You can also set the Visibility directly: Chart{     BarMark(x: .value("o", 5),             y: .value("m", "Duration: 5m"),             width: 7)         .foregroundStyle(.orange)          BarMark(x: .value("o", 7),             y: .value("m", "Intervals: 7"),             width: 7)         .foregroundStyle(.teal) } .chartYAxis(.hidden) .chartXAxis(.hidden)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to ASWebAuthenticationSession's callbackURLScheme crash
Having the same issue now that I build the app with iOS 14.5. I will use the work-around mentioned by apoorvet (thanks!), but this is surely a bug right?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’21