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

像图中所示,曲线会出个头,怎么让下边的fill area和端点最右边对齐呢,感谢

code: let aaChartModel = AAChartModel() .chartType(.areaspline) .margin([kScaleValue(0), kScaleValue(16), kScaleValue(0), kScaleValue(16)]) // 设置边距(上、右、下、左) .animationType(.easeFrom)//设置图表渲染动画类型为 EaseFrom // .yAxisMin(6) // 设置 Y 轴最小值为 0 .dataLabelsEnabled(false) .legendEnabled(false) // 隐藏图例 .markerRadius(0) // 隐藏数据点 .categories(timeArray) .series([...

你好,我看了下demo,相对于市面上比其他图表库好很多,现在有几个问题 1、我怎么样让x轴顶格显示? 2、我想做墨迹天气那种,如图,能否做的出。 现在主要是顶格的问题 让我头痛 代码如下 ![WechatIMG160](https://github.com/AAChartModel/AAChartKit/assets/75963611/7a658c62-796c-4c25-a1b4-43a630cacb09) ![WechatIMG163](https://github.com/AAChartModel/AAChartKit/assets/75963611/fe39796f-1a80-46a7-90c7-e03104a99b71)

问题描述 在X轴以上按may列滑动,这时may列选中变色。 在停止滑动状态,选中其他列。在X轴以下滑动, 选中变色状态会自动跳回may列。 复现方式 DEMO Custom Style | 自定义风格样式图表第 46个(customColumnChartBorderStyleAndStatesHoverColor---自定义柱状图 border 样式及手指掠过图表 series 元素时的柱形颜色) 添加一句支持滑动 .scrollablePlotAreaSet( AAScrollablePlotArea.new .minWidthSet(@(12 * 50)) .scrollPositionXSet(@0))

[https://www.highcharts.com/demo/maps/basic-map](https://www.highcharts.com/demo/maps/basic-map)

数据大概五六百条,绘制完成后,手指滑动发现tooltip有些点不会显示出来,并且在moveOverEventMessage代理方法中,index也是直接跳过,比如221下一个直接223。请问有办法解决吗?

I trying a simple graph with macOS sequoia: ```objc -(void)drawChartType { [self setUpChartView]; [self setupAAChartViewWithChartType]; [self.aaChartView aa_drawChartWithChartModel: self.aaChartModel]; } -(void)setUpChartView { self.aaChartView = [[AAChartView alloc] initWithFrame:self.view.bounds]; [self.view addSubview:self.aaChartView]; } -(void)setupAAChartViewWithChartType...

```objc .scrollablePlotAreaSet( AAScrollablePlotArea.new .minWidthSet([NSNumber numberWithFloat:maxX]) .opacitySet(@1) //y轴透明度 .minWidthSet(@(maxX))) //设置滚动区域 .seriesSet(eleArray); ``` `maxX` 是根据 X 轴数量 * 固定宽度算出来的 但是现在不生效了

helpful