AAChartKit icon indicating copy to clipboard operation
AAChartKit 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 203 AAChartKit issues
Sort by recently updated
recently updated
newest added

### 代码 我使用项目提供的demo,以下是demo自带示例方法,我做了一点修改,添加了缩放和标签显示,然后有些问题想请教下 ```swift //SpecialChartComposer.swift static func bubbleChart() -> AAChartModel { AAChartModel() .chartType(.bubble) .title("AACHARTKIT BUBBLES") .subtitle("JUST FOR FUN") .yAxisTitle("℃") .yAxisGridLineWidth(0) .dataLabelsEnabled(true)// 此处为增加代码 .zoomType(.xy) .colorsTheme([ // AAGradientColor.radialGradient(position: .topCenter, startColor: AAColor.red, endColor:...

![Image](https://github.com/user-attachments/assets/7b190447-cb38-426a-ae63-7dbaa60dddf6)

Is it possible to somehow use images from the ressource instead of a fileserver? ``` - (AAOptions *)customXAxisLabelsBeImages { NSArray *imageLinkStrArr = @[ @"", @"", @"", @"", @"", @"", @"",...

.xSet(@-30) // 设置 y 轴标签与轴线的水平间距,尝试不同的值 .paddingSet(@0); // 设置标签的内边距 设置了这两个值 但是不生效 2.双Y轴 我想让y轴显示标题 并且在Y轴的正上方 居中怎么设置

我在#1142找到了单指滑动的设置 AAPropStatementAndPropSetFuncStatement(assign, AATooltip, BOOL, followTouchMove) 但是设置这个在原大小就无法滑动显示tooltip了,有没有一种方式仅在图表放大时滑动呢?

遇到个很奇怪的bug,当滑动到图表最右边的时候,tooltip弹框的内容会和边框产生如上偏移 请问大佬这种情况该怎么排查解决?

柱状图如果数据跨度比较大时柱子显示不出来=。= 例:柱状图Y轴的最大值为1千万,其中一个柱子的数据是2,那么这根柱子在展示上几乎显示不出来, 需求:能否给柱子加一个自定义颜色的背景,表示这个位置有数据.或者有其他更好的方案也可以

duplicate

请教:柱状图柱间距、组间距如何设置的问题 我想设置柱子宽度8px,这个是支持的 然后我想设置柱子之间的间距 是6px 组与组之间的间距是12px 我怎么能够精准的设置这些值?支持么?

helpful