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...
基金估值功能问题
 第一次请求数据,在最后一个有效的数据点上添加AADataLabel,没有数据的点将数据置空。 之后,每1分钟会请求新的数据,使用chartView.aa_updateChart(options: aaOptions, redraw: true)重绘图表后,小圆点也被重复的绘制了。

此为饼图图例的代码,设置了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) )` 
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)
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...