Will Dale
Will Dale
From what I can see, `.animation(nil)` has been deprecated but `.animation(nil, value: 0)` has not. Also there is a beta version of [animation(_:)](https://developer.apple.com/documentation/swiftui/text/animation(_:)). --- Edit [Ticket opened](https://github.com/willdale/SwiftUICharts/projects/10#card-69996768)
Custom animations are coming. Until then a solution is to add: ```swift .transaction { transaction in transaction.animation = nil } ``` This should disable animations. For more see [https://www.avanderlee.com/swiftui/disable-animations-transactions/](https://www.avanderlee.com/swiftui/disable-animations-transactions/)
It's not necessarily outside the scope of the project. The pie chart already implements this feature. In [PieChartDataPoint](https://github.com/willdale/SwiftUICharts/blob/main/Sources/SwiftUICharts/PieChart/Models/DataPoints/PieChartDataPoint.swift), there is a property called `label` which is of type [OverlayType](https://github.com/willdale/SwiftUICharts/blob/main/Sources/SwiftUICharts/PieChart/Extras/PieChartEnums.swift). In...
Hey @1337domz, sorry for the late reply! Is this just in the previews? I can't replicate it on a device or a simulator but I can when in a preview....
Hey @gesabo, I'm working of a new version of the library - [project board](https://github.com/willdale/SwiftUICharts/projects/10) and [version branch](https://github.com/willdale/SwiftUICharts/tree/release/3). One of the changes is that the data model publishes the data points...
What do you want to do in the separate bar styles?
Hey @pinventado, can you post some minimum reproducible code please?
Hi, currently there is no way of doing this. In an ideal world what spacing options would you have?
Hey @Vincz, I'll add this to the list for next major version. Thanks for the suggestion. Will
Again this is something I would like to implement when I have time.