2010-09-02 2 views

ответ

3

Основан как.

В протоколе CPTBarPlotDataSource есть метод

-(CPTFill *)barFillForBarPlot:(CPTBarPlot *)barPlot recordIndex:(NSUInteger)index; 

, который работает как шарм.

Cheers.

0

В файле .h

@property (nonatomic, strong) CPTBarPlot *yourPlot1; 
@property (nonatomic, strong) CPTBarPlot *yourPlot2; 

В .m файл

self.yourPlot1 = [[CPTBarPlot alloc] init]; 
self.yourPlot1.fill = [CPTFill fillWithColor:[CPTColor colorWithComponentRed:194.0f/255.0f green:237.0f/255.0f blue:154.0f/255.0f alpha:1.0f]]; 
self.yourPlot2 = [[CPTBarPlot alloc] init]; 
self.yourPlot2.fill = [CPTFill fillWithColor:[CPTColor colorWithComponentRed:190.0f/255.0f green:245.0f/255.0f blue:104.0f/255.0f alpha:1.0f]]; 
Смежные вопросы