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

哑铃图 使用AAOptions 绘制,但是触摸的时候moveOverEventHandler 回调不调用,demo中也复现出来了

你好!柱状图放大后,滑动感觉卡顿,有点分页的效果,怎么去掉该效果

![5BF1653834640731BDD7EE87ED837693](https://user-images.githubusercontent.com/13724610/118904527-a7df1480-b94c-11eb-8a1a-055cbd292316.jpg)

![WechatIMG233](https://user-images.githubusercontent.com/57931594/118616190-0e045400-b7f4-11eb-9c79-567d14059fef.jpeg) **使用此方法不行:** ```objc self.aaChartOption.plotOptions.series.events = AAEvents.new .legendItemClickSet(@AAJSFunc(function() { return false; })); ```

点击图例边缘位置图例标题会变黑 ![image](https://user-images.githubusercontent.com/78124717/118620153-d1d2f280-b7f7-11eb-88ea-35d32ab7c43d.png) 如图

Hi all, It is possibile to remove the user action. I want that user, when touch the chart, nothing appear: - no tooltip - no marker selection - not series...

![image](https://user-images.githubusercontent.com/17683036/116170648-cc731280-a739-11eb-9a32-86eb4b279399.png) 哑铃图 上下2个点和 中间直线 颜色可以设置吗

Pro

AAChartKit-Pro 不是不是还不支持 取消 “选中一个图形,其他图形就变淡的效果” ![image](https://user-images.githubusercontent.com/17683036/116343137-758f3b00-a816-11eb-9d20-fd3ed9e61bfd.png) 没有下面这个 ![image](https://user-images.githubusercontent.com/17683036/116343172-893aa180-a816-11eb-95e1-c83c2cd36691.png)

Pro

```objc - (AAOptions *)configureCustomStyleTooltipChart { AAChartModel *aaChartModel = AAChartModel.new .chartTypeSet(AAChartTypeArea)//图表类型 .titleSet(@"近三个月金价起伏周期图")//图表主标题 .subtitleSet(@"金价(元/克)")//图表副标题 .colorsThemeSet(@[@"#FFD700"/*(纯金色)*/,@"#ffc069",@"#06caf4",@"#7dffc0"])//设置主体颜色数组 .markerSymbolStyleSet(AAChartSymbolStyleTypeBorderBlank)//折线连接点样式为外边缘空白 .xAxisTickIntervalSet(@15)//x轴刻度点间隔数(设置每隔几个点显示一个 X轴的内容) .yAxisGridLineStyleSet([AALineStyle styleWithWidth:@0.8])//y轴横向分割线宽度(为0即是隐藏分割线) .zoomTypeSet(AAChartZoomTypeX) .categoriesSet(@[ @"10-01",@"10-02",@"10-03",@"10-04",@"10-05",@"10-06",@"10-07",@"10-08",@"10-09",@"10-10",@"10-11", @"10-12",@"10-13",@"10-14",@"10-15",@"10-16",@"10-17",@"10-18",@"10-19",@"10-20",@"10-21",@"10-22", @"10-23",@"10-024",@"10-25",@"10-26",@"10-27",@"10-28",@"10-29",@"10-30",@"10-31",@"11-01",@"11-02", @"11-03",@"11-04",@"11-05",@"11-06",@"11-07",@"11-08",@"11-09",@"11-10",@"11-11",@"11-12",@"11-13", @"11-14",@"11-15",@"11-16",@"11-17",@"11-18",@"11-19",@"11-20",@"11-21",@"11-22",@"11-23",@"11-024", @"11-25",@"11-26",@"11-27",@"11-28",@"11-29",@"11-30",@"12-01",@"12-02",@"12-03",@"12-04",@"12-05", @"12-06",@"12-07",@"12-08",@"12-09",@"12-10",@"12-11",@"12-12",@"12-13",@"12-14",@"12-15",@"12-16", @"12-17",@"12-18",@"12-19",@"12-20",@"12-21",@"12-22",@"12-23",@"12-024",@"12-25",@"12-26",@"12-27", @"12-28",@"12-29",@"12-30" ])...