gpt4 book ai didi

ios - 如何在核心情节饼图中心添加图片和标题?

转载 作者:行者123 更新时间:2023-11-28 06:55:39 26 4
gpt4 key购买 nike

我需要在圆环饼图的中心添加图像和标签。我使用核心图来绘制饼图。如何获取饼图的中心?

请看图片 Donut pie chat

提前致谢。

最佳答案

centerAnchor 中的坐标乘以绘图区域 bounds 大小的相应部分,并将其添加到 xy 边界的坐标 origin。您可以使用计算出的点作为图层注释的 anchor 。

饼图在画图的时候是这样计算中心的:

CPTPlotArea *thePlotArea = self.plotArea;

CGRect plotAreaBounds = thePlotArea.bounds;
CGPoint anchor = self.centerAnchor;
CGPoint centerPoint = CPTPointMake(plotAreaBounds.origin.x + plotAreaBounds.size.width * anchor.x,
plotAreaBounds.origin.y + plotAreaBounds.size.height * anchor.y);
centerPoint = [self convertPoint:centerPoint fromLayer:thePlotArea];
if ( self.alignsPointsToPixels ) {
centerPoint = CPTAlignPointToUserSpace(context, centerPoint);
}

关于ios - 如何在核心情节饼图中心添加图片和标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33730303/

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