CorePlot with swift: there is no yAxis.majorIntervalLength

谁说我不能喝 提交于 2019-11-27 08:46:04

问题


Here is how my graph looks like:

I wan't the y axis to have an interval of 50 so i try doing this:

var axisSet: CPTXYAxisSet = CPTXYAxisSet(layer: graph.axisSet)
var y = axisSet.yAxis

y.majorIntervalLength = 50

But majorIntervalLength doesn't seems to exist


回答1:


Swift doesn't support NSDecimal values. We've made some changes to the Core Plot API, replacing NSDecimal with NSDecimalNumber. The changes are on the release-2.0 branch and not in a release package yet. See Core Plot issue #96 for more discussion of the issue.



来源:https://stackoverflow.com/questions/27204557/coreplot-with-swift-there-is-no-yaxis-majorintervallength

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!