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

![image](https://user-images.githubusercontent.com/17683036/116020263-843feb80-a678-11eb-8779-65ba20dde049.png) neng能否实现散点图 ,选中x轴一个值,高亮显示多个x轴相同,y轴不同的点,上图只能选中一个点。 ```js Highcharts.chart('container', { "credits" : { "enabled" : false }, "touchEventEnabled" : false, "chart" : { "polar" : false, "type" : "scatter", "inverted" : false, "pinchType" :...

![ageImage](https://user-images.githubusercontent.com/57931594/114361766-1dff9700-9ba9-11eb-9502-238239a1ff57.jpg)

![src=http___cdn jiemodui com_img_Public_Uploads_item_20171219_1513622290976615 png refer=http___cdn jiemodui](https://user-images.githubusercontent.com/12438493/113374795-8e840800-93a0-11eb-973b-5f6c769ddac7.jpg)

我测了下,只能双指滑动,不支持单指。请问大神怎么解决?

有什么思路吗?

enhancement

用时间做横坐标的时候,x轴始终默认显示6个数据,会显示不全,可以设置x轴显示数据的默认或者最小个数吗?

定义全局变量: `AAChartModel *aaChartModel;` 初始化时的代码: ```objc aaChartModel = AAObject(AAChartModel) .chartTypeSet(AAChartTypeColumn)//设置图表的类型 .categoriesSet(self.xArr)//图表横轴的内容 .zoomTypeSet(AAChartZoomTypeX)//允许x轴缩放 .yAxisLineWidthSet(0)//隐藏y轴 .yAxisMinSet(0)//设置y轴最小值为0 .seriesSet(@[ AAObject(AASeriesElement) .nameSet(LocalizedString(@"里程")) .dataSet(self.yArr)]) ; /*Custom Tooltip Style --- 自定义图表浮动提示框样式及内容*/ AAOptions *aaOptions = aaChartModel.aa_toAAOptions; aaOptions.chart .resetZoomButtonSet(AAResetZoomButton.new .themeSet(@{...

I use a `AAChartTypeSpline` with `AAZonesElement` to cut the graph in 3 color from bottom to top. Bottom is blue line, middle green and top red. The line is fine...