KralLee

Results 1 issues of KralLee

我在使用的时候发现 chartView 宽度设定值很小的时候,折线图会被截取,表现如下: 正常情况,宽度 400,左右就是有圆角的 ![IMG_7622](https://github.com/user-attachments/assets/7b3ac848-0a45-452d-b2de-849d13e3a704) 出错情况,宽度 200,左右就被截取了 ![IMG_7623](https://github.com/user-attachments/assets/4e31a363-07c4-4b0d-bcb4-349c7ac1632b) 代码如下 ``` aaChartView!.frame = CGRect(x: 0,y: 60,width: 200,height: 130) // height 设定的大小不影响是否截取,但是 width 设定过小就会被截取,如果是 400 就不会被截取 view.addSubview(aaChartView!) aaChartView!.isScrollEnabled = false//Disable chart...