AAChartKit-Swift
AAChartKit-Swift copied to clipboard
📈📊📱💻🖥️An elegant modern declarative data visualization chart framework for iOS, iPadOS and macOS. Extremely powerful, supports line, spline, area, areaspline, column, bar, pie, scatter, angular ga...
我在使用的时候发现 chartView 宽度设定值很小的时候,折线图会被截取,表现如下: 正常情况,宽度 400,左右就是有圆角的  出错情况,宽度 200,左右就被截取了  代码如下 ``` aaChartView!.frame = CGRect(x: 0,y: 60,width: 200,height: 130) // height 设定的大小不影响是否截取,但是 width 设定过小就会被截取,如果是 400 就不会被截取 view.addSubview(aaChartView!) aaChartView!.isScrollEnabled = false//Disable chart...
During my development, I noticed that a series will not appear if it contains more than 1000 datapoints when constructed using a dictionary list ( [[String : Any]] ). However,...
根据示例,我使用网络图片是可以的,但是我想使用项目本地图片资源,一直加载不出来,不知是什么问题。使用本地路径,无法加载。又使用了图片转base64,还是无法加载。
I am using this library via Swift Package Manager (SPM). In version 9.4.0, the newly added `AAChartView+API.swift` file uses Objective-C types, which are not directly accessible in Swift. To use...
i need to change the max value of AAYAxis() for each AASeriesElement in solidgaugeChart. because i will use the chart as nested chart.
Hi! I'm trying to use this awesome library with a MacOS project and SwiftUI. I embed the Chart view inside a `NSViewRepresentable`. I don't get any error but nothing is...