AAChartKit
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...
哑铃图 使用AAOptions 绘制,但是触摸的时候moveOverEventHandler 回调不调用,demo中也复现出来了
你好!柱状图放大后,滑动感觉卡顿,有点分页的效果,怎么去掉该效果

 **使用此方法不行:** ```objc self.aaChartOption.plotOptions.series.events = AAEvents.new .legendItemClickSet(@AAJSFunc(function() { return false; })); ```
点击图例边缘位置图例标题会变黑  如图
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...
哑铃图颜色
 哑铃图 上下2个点和 中间直线 颜色可以设置吗
AAChartKit-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" ])...