gpt4 book ai didi

objective-c - 更改核心图中图例的大小?

转载 作者:行者123 更新时间:2023-12-03 16:58:25 24 4
gpt4 key购买 nike

我有一个带有相应图例的饼图。如何更改图例框的大小? (缩小所有内容,包括文本、颜色框和框架)。

请注意,我正在为 OSX 而不是 iOS 构建应用程序。

最佳答案

如果您只是设置 CPTLegend 的较小文本样式,则所有内容都将根据请求调整大小。因此,对于您的 CPTGraph 您需要执行以下操作:

CPMutableTTextStyle *mySmallerTextStyle = [[[CPTMutableTextStyle alloc] init] autorelease];
[textStyle setFontName:fontName];
[textStyle setColor:color];

//This is the important property for your needs
[textStyle setFontSize:5];

//Set this up with your graph
[graph setLegend:[CPTLegend legendWithGraph:graph]];
[[graph legend] setTextStyle:(CPTTextStyle *)mySmallerTextStyle];

有一个discussion在 CorePlot 论坛上讨论此问题。

关于objective-c - 更改核心图中图例的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12083994/

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