An An
An An
Can this problem be repeated on the simulator? Since I don't have a real machine, I have to test it in the simulator to see if I can reproduce this...
there is a property named `marginBottom` that can be used to change the bottom margin of chart. It is possible to resolve this problem if you add it in AAOptionsConstructor.js...
Swift版本的`AAOptionsConstructor`其实`在AAJSFiles.bundle`里.这样处理主要是为了简化代码量.好处是少了大量的OC模型文件,坏处是灵活性较差,有些特殊的自定义功能,只能直接手动去修改`AAOptionsConstructor`源文件里面的内容. 你图中所示的所谓气泡其实就是通过`AAMarker`来设置的,具体设置的**JavaScript**代码如下: ```js var aaMarker = {}; aaMarker.radius = aaChartModel.markerRadius; //曲线连接点半径,默认是4 aaMarker.symbol = aaChartModel.symbol; //曲线点类型:"circle", "square", "diamond", "triangle","triangle-down",默认是"circle" //设置曲线连接点风格样式 if (aaChartModel.symbolStyle === "innerBlank") { aaMarker.fillColor = "#ffffff"; //点的填充色(用来设置折线连接点的填充色) aaMarker.lineWidth =...
不过你用不着去修改JavaScript文件的源码. 这个折线连接标记点样式风格在`AAChartModel`中不是有一个枚举值吗? ```swift public enum AAChartSymbolStyleType: String { case normal, innerBlank, borderBlank } ``` 其中`AAChartSymbolStyleType.innerBlank`就是设置折线连接标记点样式为中空(就是你所谓的气泡)的效果. 而且demo中也是有设置为这种中空样式的示例代码吧.你可以仔细看看.
当前的demo中的示例图表的浮动提示框不是已经有了吗?你主要是要修改浮动提示框的背景颜色吗?
之前是支持 3D 图形的,但是3D 图表实在是太不常用,所依赖的 .js 文件又占有一定体积,在某个历史版本中被我移除了此功能.😅
周末哈,周末有时间弄弄
不应该啊,我自己 pod 导入测试过,一切正常啊! 你 pod 导入的有 AAJSFiles.bundle 这个 bundle 文件夹吗?
Demo can not run with Xcode version 12.5
Same issue, Has the problem been resolved?