显示与饼图切片相同颜色的文本标签

发布于 2024-11-08 04:37:16 字数 146 浏览 0 评论 0原文

我正在使用核心图绘制饼图和以下文本

错误 10
通过 400

因此,对于上述数据,我的饼图包含 2 个具有 2 种不同颜色的切片

,我想为每个切片设置相同的文本颜色,

现在文本为白色,

谢谢

i am using core plot to draw pie chart and following text

Error 10
Pass 400

so for above data my pie chart contains 2 slice with 2 different color

i want to set the same text color for each slice

right now text is in white color

thank you

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

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

发布评论

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

评论(2

凉宸 2024-11-15 04:37:16

@pooja 我明白了:) 尝试这个而不实施

-sliceFillForPieChart:recordIndex:
-(CPLayer *)dataLabelForPlot:(CPPlot *)plot recordIndex:(NSUInteger)index 
{

CPTextLayer *label = [[CPTextLayer alloc] initWithText:[NSString stringWithFormat:@"%i", index]];
CPMutableTextStyle *textStyle = [label.textStyle mutableCopy];
textStyle.color = [CPPieChart defaultPieSliceColorForIndex:index];
label.textStyle = textStyle;
[textStyle release];
return [label autorelease];
}

@pooja i got it :) try this without implementing

-sliceFillForPieChart:recordIndex:
-(CPLayer *)dataLabelForPlot:(CPPlot *)plot recordIndex:(NSUInteger)index 
{

CPTextLayer *label = [[CPTextLayer alloc] initWithText:[NSString stringWithFormat:@"%i", index]];
CPMutableTextStyle *textStyle = [label.textStyle mutableCopy];
textStyle.color = [CPPieChart defaultPieSliceColorForIndex:index];
label.textStyle = textStyle;
[textStyle release];
return [label autorelease];
}
永言不败 2024-11-15 04:37:16

您可以使用绘图的 labelTextStyle 属性来更改标签的外观。

You can use the labelTextStyle property of the plot to change the appearance of the labels.

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