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

总体来说,这是一个很优秀的图表库,唯一不足的就是气泡定义太难了,都是使用JS定义(不会JS😭),希望后续能直接使用OC定义

enhancement

设置代码如下: ```objc - (AAChartModel *)configurePieChart { AAChartModel *aaChartModel = AAChartModel.new // .marginSet(@[@5,@150,@5,@150]) .chartTypeSet(AAChartTypePie) .tooltipEnabledSet(false) .colorsThemeSet(@[@"#0c9674",@"#7dffc0",@"#ff3333",@"#facd32",@"#0c9674",@"#EA007B",@"#EA007B",@"#EA007B"]) .dataLabelsEnabledSet(true)//是否直接显示扇形图数据 .legendEnabledSet(false) .seriesSet(@[ AASeriesElement.new .enableMouseTrackingSet(@true) .sizeSet(@140)//尺寸大小 .innerSizeSet(@"70%") .showInLegendSet(false) .allowPointSelectSet(false)//是否允许在点击数据点标记(扇形图点击选中的块发生位移) .statesSet(AAStates.new .hoverSet(AAHover.new.brightnessSet(@0).haloSet(AAHalo.new.opacitySet(@1))) .inactiveSet(AAInactive.new.opacitySet(@100)) ) .dataSet(@[ @[@"支付宝"...

helpful

zIndex 设置多大都没有效果, 请问大神如何解决,我需要把标注线放到数据线之前 ![Simulator Screen Shot - iPhone 14 Pro Max - 2023-06-27 at 14 41 22](https://github.com/AAChartModel/AAChartKit/assets/15395337/8a65c82c-87ab-4068-9822-a7b2f5acc64f) ![20230627144136](https://github.com/AAChartModel/AAChartKit/assets/15395337/9193c42f-6525-40e7-ba11-90e84ff9b203)

您好, 线图的 AAMarker 的 symbol 设置为 base64 图片后,选中的点显示为另一张图要怎么设置?主要是为了区分线上的点在普通状态与选中状态的样式不同。 我试着用AAMarkerStates.hover来设置,但它似乎不支持设置图片。 谢谢!

Hello, I have a line chart with two series elements. both series represent RSSI updates from BLE hardware every 1 second. Here's How I create the series: `AASeriesElement *sensorSeries =...

Would it be possible to trigger touch events that return name, x, ect... for null values? I would like to see the x value and name of AASeriesElement even if...

請教,我的App有使用到此套件,假如要商用,需要在app哪聲明? 聲明內容為何?

在使用过程中进行app应用检测,检测发现了“InnerHTML的XSS攻击风险”,该风险如何规避

曲线图在iOS16.4以上 连续两个相等值 曲线会出现断线