核心图:将数据点添加到折线图时遇到问题
目前,我正在使用散点图示例代码中的以下代码:
// Axes
CPTXYAxisSet *xyAxisSet = (id)graph.axisSet;
CPTXYAxis *xAxis = xyAxisSet.xAxis;
CPTMutableLineStyle *lineStyle = [xAxis.axisLineStyle mutableCopy];
lineStyle.lineCap = kCGLineCapButt;
但我的问题是,该图有点类似于条形图。轴上的 X 和 Y 值都只从 0 到 1。如何使两个轴显示 [-5,5] 之间的值?
Currently I am using the following code from the scatter plot example code:
// Axes
CPTXYAxisSet *xyAxisSet = (id)graph.axisSet;
CPTXYAxis *xAxis = xyAxisSet.xAxis;
CPTMutableLineStyle *lineStyle = [xAxis.axisLineStyle mutableCopy];
lineStyle.lineCap = kCGLineCapButt;
My problem is though, the graph somewhat resembles a bar graph. X and Y values on the axes both only go from 0 to 1. How to make both axes show the values from [-5,5]?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要设置绘图空间的 xRange 和 yRange 以设置绘图将显示的值的范围。例如:
要显示实际的点,您需要设置图形的 dataSource 对象,并且它需要响应数据源方法:
如果您只有一个图,则可以忽略 numberForPlot: 的第一个参数。当需要点的 x 轴值时,第二个参数将为 0;当需要点的 Y 轴值时,第二个参数将为 1。索引是绘图的点数。因此,假设您有一个名为 myDataArray 的 NSArray 中的数据,其中该数组中的每个对象都是 x,y 值的另一个 NSArray,您将得到如下内容:
您可以使用固定数据设置数据数组,例如:
You need to set the xRange and yRange for the plotspace to set the range of values the plot will show. Something like:
To get actual points to show up, you need to set up the graph's dataSource object, and it needs to respond to the datasource methods:
If you only have one plot, you can ignore the first argument to numberForPlot:. The second argument will be 0 when it wants the x axis value for the point, and it will be 1 when it wants the Y axis value for the point. Index is the point number for your plot. So assuming you have the data in an NSArray called myDataArray, where each object in that array is another NSArray of x,y values, you'll have something like:
You can set up the data array with fixed data like: