核心图将数据映射到 x 轴
我不太确定 core-plot 是否能够做到这一点。我有一个 unix 时间戳和一些值的列表,我需要按如下方式显示它(折线图)
- 每年都有自己的线
- X 轴应显示从 Jan - Dec 的月份
En 条目的日期 19.02.2011 应介于x 轴为二月和三月。
有人可以给我一个关于如何做到这一点的提示吗?
更新
我有一个来自 Excel 的示例,它应该是什么样子
非常感谢 克里斯
I am not quite sure if core-plot is able to do this. I have a list of unix timestamps and some values and I need to display it as follows (Line graph)
- Each year has its own line
- X-Axis should show the month from Jan - Dec
En entry with the date 19.02.2011 should be between Feb and March in the x-axis.
Could someone give me a hint on how to do that?
UPDATE
I have an example from Excel how it should look like
Thanks a lot
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Core Plot 包含几个示例应用程序,展示如何沿轴绘制日期。您可以使用
CPTTimeFormatter
(NSDateFormatter
的包装器)来格式化值。您必须选择一个参考日期,然后计算每个日期值与参考日期之间的偏移量。然后绘图数据源提供这些偏移作为绘图数据。Core Plot includes several example apps that show how to plot dates along an axis. You can use a
CPTTimeFormatter
(a wrapper for anNSDateFormatter
) to format the values. You have to pick a reference date and then compute the offset between each date value and the reference date. The plot datasource then provides these offsets as the plot data.