AAChartKit-Swift icon indicating copy to clipboard operation
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...

Results 166 AAChartKit-Swift issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/12290214/188075158-e653a358-6ccd-45eb-b4ce-b0640107985e.png) 第一次请求数据,在最后一个有效的数据点上添加AADataLabel,没有数据的点将数据置空。 之后,每1分钟会请求新的数据,使用chartView.aa_updateChart(options: aaOptions, redraw: true)重绘图表后,小圆点也被重复的绘制了。

![image](https://user-images.githubusercontent.com/42810994/187584175-efba5d9d-4eb1-45b4-8fb0-bea4ec9da958.png)

此为饼图图例的代码,设置了font-weight为regular,但默认还是粗体,且对fontWeight反复设置bold和regular字体粗细看起来都没有任何变化。 `.legend(AALegend() .enabled(true) .floating(false) .itemStyle(AAItemStyle() .fontWeight(AAChartFontWeightType.regular) .color("#666666")) .align(.center) .verticalAlign(.bottom) .layout(.horizontal) .symbolHeight(10) .symbolWidth(10) .itemMarginTop(10) .itemWidth(100) .labelFormat("{name} {percentage:.2f}% ") .x(0) )` ![IMG_1587](https://user-images.githubusercontent.com/42810994/186603844-b4a1c5d5-e456-40a4-87d0-52c69a8d3878.jpg)

if let max = chartModel.yAxisMax, let min = chartModel.yAxisMin { let interval = max - min let tickPositions = [ min, min + interval * 0.25, min + interval *...

I have configured charts, but when scrolling left, opacity not working on charts out of grid. It is still visible let chartView = AAChartView() chartView.frame = CGRect(x: 0, y: 0,...

1. **yAxisLineWidth**属性没有对外开放修改的接口(应该是遗漏了) 2. **categories**属性中文注释有误 3. **AAChartView**目前是否不支持storyboard和xib布局呢(使用sb布局会crash)

question

I want to be able add a new data point every second to an existing AAChartView of type line chart. I am not sure how to do this. I know...

enhancement

不知道是不是只是因为demo没有实现这个,请问表格可以自动适应横竖屏吗? 使用autolayout可以解决这个问题吗

enhancement

柱状图怎么支持X轴滑动

question