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

折线图Y轴(AAYAxis)关于坐标刻度数的属性不起作用 1.AAPropStatementAndPropSetFuncStatement(strong, AAYAxis, NSNumber *, tickAmount)//刻度总数 2.AAPropSetFuncImplementation(AALabels, NSNumber *, step)//显示 n 的倍数标签,例如设置为 2 则表示标签间隔一个轴标签显示。默认情况下,为了避免轴标签被覆盖,该参数会根据情况自动计算。可以通过设置此参数为 1 来阻止自动计算。

1、当不使用aaoption的时候 设置了aaChartView.delegate = self 能执行aaChartViewDidFinishLoad和moveOverEventWithMessage代理 但是不执行 didReceiveScriptMessage 2、当使用 aaoption的时候 设置了aaChartView.delegate = self 并且设置了aaOptions.touchEventEnabled = YES 依然不执行代理 didReceiveScriptMessage

![image](https://user-images.githubusercontent.com/74707017/122626173-75efd800-d0db-11eb-975a-9ee7a80a246e.png) 一起设置可以实现这种效果, ![image](https://user-images.githubusercontent.com/74707017/122626304-56a57a80-d0dc-11eb-90f8-c56c202150d8.png) 单独设置渐变蓝柱状图的tooltip,实现不了上图的效果,求解? 或都有什么方法可以实现,只让渐变蓝柱状图有tooltip,背景图那个柱子不提示tooltip.

比如我使用format自定义了tooltips,想点击里面的具体文字如“跳转”,然后拿到这个回调方法,这个目前能实现么? 类似图中那样的

```js function configureChartTouchEvent(aaPlotOptions) { var mouseOverFunc = function() { var message = { name: this.series.name, y: this.y, x: this.x, category:this.category, offset: {plotX: this.plotX, plotY: this.plotY}, index: this.index, }; window.webkit.messageHandlers.mouseover.postMessage(message); };...

enhancement