SwiftUICharts
SwiftUICharts copied to clipboard
A charts / plotting library for SwiftUI. Works on macOS, iOS, watchOS, and tvOS and has accessibility features built in.
See:  Xcode 14 shows these as purple warnings, whereas Xcode 13 only shows them as system logs. The affected method: 
for example, I have a view switcher like this ``` switch motionData.page{ case .goal: GoalView(haveGoal: true).transition(.offset(x: 0, y: UIScreen.screenHeight)) case .result: ResultView().transition(.move(edge: .bottom)) } ``` the chart in the result...
A strange bug - with the attached code if you comment out the pointMarkers modifier the X Axis displays as expected, but with it in it appears not to be...
When all my data points have the same value, I get an error from `LineChart`. Changing one of the values to zero makes the error go away. I wonder if...
Hello, I can change infobox style with below codes ```swift BarChartStyle( infoBoxPlacement: .floating, infoBoxValueFont: .system(size: 12), infoBoxBackgroundColour: .red, infoBoxBorderColour: .blue, infoBoxBorderStyle: .init(lineWidth: 5), xAxisLabelFont: .system(size: 10), xAxisLabelsFrom: .dataPoint(rotation: .degrees(-45)), yAxisGridStyle:...
I have a multiple line chart working from the demo but the graph I need to create has 1 line with 12 points and another with only 8. When I...
When i rotate labels for 90 degrees in xAxisLabelsFrom for BarChartStyle, the yAxisPOI goes under 0. On the pic yAxisPOI value is 500. Also it's moved out of screen 0...
Hi, how can I center the labels on the xAxis? Ideally they are centered to the according the bar. Sample code: ``` struct BarChartView: View { let yAxisLabels = [...]...
is there any way to disable animations? currently I can do it by setting `globalAnimation: Animation.linear(duration: 0.0)` but this causes the chart to first be displayed as blank then the...