核心图有助于将两个图绘制在一起

发布于 2024-11-05 21:04:20 字数 80 浏览 0 评论 0原文

如何同时绘制条形图和散点图?我已经在 viewDidLoad 中创建了两个对象,并且数据源也可以正确读取。我将它添加到同一个绘图空间中。但没有用!

How to draw both bar and scatter plot together? I have created object of both in viewDidLoad and the datasource also read correctly. I add it to the same plotspace. But no use!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初心未许 2024-11-12 21:04:20

您看过示例程序吗?其中许多都展示了如何将多个图(相同或不同类型)添加到单个图表中。

你看到什么了?是否有一个情节出现,或者两者都没有出现?

Have you looked at the example programs? Many of them show how to add multiple plots (of the same or different types) to a single graph.

What are you seeing? Does either plot show up, or neither of them?

染火枫林 2024-11-12 21:04:20

只需使用 graph addPlot 将多个绘图添加到图表中

CPTScatterPlot * sPlot = [[CPTScatterPlot alloc] init];
    dataLineStyle = [CPTMutableLineStyle lineStyle];
    sPlot.identifier = @"SomeIdentifier"

    dataLineStyle.lineWidth = 1.0f;
    dataLineStyle.lineColor = [CPTColor redColor];
    sPlot.dataLineStyle = dataLineStyle;
    sPlot.dataSource = self;

    greenCirclePlotSymbol = [CPTPlotSymbol ellipsePlotSymbol];
    greenCirclePlotSymbol.fill = [CPTFill fillWithColor:[CPTColor redColor]];
    greenCirclePlotSymbol.size = CGSizeMake(5.0, 5.0);
    sPlot.plotSymbol = greenCirclePlotSymbol;  

    [graph addPlot:sPlot];

Just add multiple plots to graph with graph addPlot

CPTScatterPlot * sPlot = [[CPTScatterPlot alloc] init];
    dataLineStyle = [CPTMutableLineStyle lineStyle];
    sPlot.identifier = @"SomeIdentifier"

    dataLineStyle.lineWidth = 1.0f;
    dataLineStyle.lineColor = [CPTColor redColor];
    sPlot.dataLineStyle = dataLineStyle;
    sPlot.dataSource = self;

    greenCirclePlotSymbol = [CPTPlotSymbol ellipsePlotSymbol];
    greenCirclePlotSymbol.fill = [CPTFill fillWithColor:[CPTColor redColor]];
    greenCirclePlotSymbol.size = CGSizeMake(5.0, 5.0);
    sPlot.plotSymbol = greenCirclePlotSymbol;  

    [graph addPlot:sPlot];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文