我有一个带有相应图例的饼图。如何更改图例框的大小? (制作包括文字,颜色框和框架在内的所有内容)。
注意我正在为OSX而不是iOS构建应用程序。
答案 0 :(得分:3)
如果您只设置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];
在CorePlot论坛上有一个discussion。