gpt4 book ai didi

objective-c - 如何使用自定义 View 设置核心绘图的绘图面积

转载 作者:行者123 更新时间:2023-12-01 16:59:10 25 4
gpt4 key购买 nike

我正在使用核心图绘制图。我正在尝试在绘图区域上绘制图形,但是它包含白色背景。但是我想用自己的背景画图。这是我的代码。

CGRect frame = [self.hostingView bounds];
self.graph = [[[CPTXYGraph alloc] initWithFrame:frame] autorelease];

// Add some padding to the graph, with more at the bottom for axis labels.
self.graph.plotAreaFrame.paddingTop = 10.0f;
self.graph.plotAreaFrame.paddingRight = 10.0f;
self.graph.plotAreaFrame.paddingBottom = 25.0f;
self.graph.plotAreaFrame.paddingLeft = 30.0f;
self.graph.plotAreaFrame.plotArea.fill=[(CPTFill *)[CPTFill alloc] initWithColor: [CPTColor colorWithComponentRed:0.8 green:0.8 blue:0.8 alpha:1.0]];

// Tie the graph we've created with the hosting view.
self.hostingView.hostedGraph = self.graph;
}

在上面的代码中,我尝试更改颜色,但是我想为y轴上的每个刻度绘制水平虚线。

最佳答案

要绘制水平线,请为y轴设置majorGridLineStyle和/或minorGridLineStyle以分别从主要刻度线和次要刻度线绘制线条。使用线型的dashPatternpatternPhase属性来控制点样。有关如何使用这些线型属性的详细信息,请参见Apple的Quartz 2D docs

关于objective-c - 如何使用自定义 View 设置核心绘图的绘图面积,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8758377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com